Skip to content

Commit 0b21384

Browse files
authored
Merge pull request #294 from recca0120/fix/array-const
Fix/array const
2 parents d02dc40 + 7fd0fb3 commit 0b21384

6 files changed

Lines changed: 920 additions & 522 deletions

File tree

eslint.config.mjs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
import typescriptEslint from "@typescript-eslint/eslint-plugin";
2-
import tsParser from "@typescript-eslint/parser";
1+
import typescriptEslint from '@typescript-eslint/eslint-plugin';
2+
import tsParser from '@typescript-eslint/parser';
33

44
export default [{
5-
files: ["**/*.ts"],
5+
files: ['**/*.ts'],
66
ignores: [
7-
"**/out",
8-
"**/dist",
9-
"**/*.d.ts",
10-
"eslint.config.mjs",
7+
'**/out',
8+
'**/dist',
9+
'**/*.d.ts',
10+
'eslint.config.mjs',
1111
],
1212
}, {
1313
plugins: {
14-
"@typescript-eslint": typescriptEslint,
14+
'@typescript-eslint': typescriptEslint,
1515
},
1616

1717
languageOptions: {
1818
parser: tsParser,
1919
ecmaVersion: 6,
20-
sourceType: "module",
20+
sourceType: 'module',
2121
},
2222

2323
rules: {
24-
'semi': [2, "always"],
25-
'curly': ["warn"],
26-
'eqeqeq': ["warn"],
24+
'semi': [2, 'always'],
25+
'curly': ['warn'],
26+
'eqeqeq': ['warn'],
2727
'@typescript-eslint/no-explicit-any': 0,
2828
'@typescript-eslint/explicit-module-boundary-types': 0,
2929
'@typescript-eslint/no-non-null-assertion': 0,
30-
"@typescript-eslint/naming-convention": ["warn"],
30+
'@typescript-eslint/naming-convention': ['warn'],
3131
},
3232
}];

0 commit comments

Comments
 (0)