Merge branch 'develop' into better-tutorial

This commit is contained in:
かっこかり 2023-10-30 23:05:07 +09:00 committed by GitHub
commit ce657ac0b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 106 additions and 73 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',