-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.eslintrc
More file actions
23 lines (23 loc) · 717 Bytes
/
Copy path.eslintrc
File metadata and controls
23 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"browser": true,
"es2021": true
},
"rules": {
"prettier/prettier": "error",
"no-unused-vars": ["error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
"linebreak-style": ["error", "windows"],
"quotes": ["warn", "single"],
"semi": ["error", "always"],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/member-ordering": 1
}
}