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() {
return this.terminated;
}
public getWorkers() {
return this.workers;
}
public getSymbol() {
return this.symbol;
}

View File

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