lint fixes

This commit is contained in:
syuilo 2023-10-30 19:38:27 +09:00
parent d45b2dd3a7
commit 4eab3c07fd
2 changed files with 4 additions and 1 deletions

View file

@ -71,9 +71,11 @@ export class WorkerMultiDispatch<POST = any, RETURN = any> {
public isTerminated() { public isTerminated() {
return this.terminated; return this.terminated;
} }
public getWorkers() { public getWorkers() {
return this.workers; return this.workers;
} }
public getSymbol() { public getSymbol() {
return this.symbol; return this.symbol;
} }

View file

@ -72,7 +72,8 @@ module.exports = {
{ 'blankLine': 'always', 'prev': 'function', 'next': '*' }, { 'blankLine': 'always', 'prev': 'function', 'next': '*' },
{ 'blankLine': 'always', 'prev': '*', 'next': 'function' }, { 'blankLine': 'always', 'prev': '*', 'next': 'function' },
], ],
'lines-between-class-members': ['error', { "lines-between-class-members": "off",
'@typescript-eslint/lines-between-class-members': ['error', {
enforce: [{ enforce: [{
blankLine: 'always', blankLine: 'always',
prev: 'method', prev: 'method',