forked from eirikpre/VSCode-SystemVerilog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 1.03 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"extends": ["airbnb-typescript", "prettier", "prettier/@typescript-eslint"],
"settings": {
"react": {
"version": "latest"
}
},
"rules": {
"class-methods-use-this": "off",
"consistent-return": "off",
"no-async-promise-executor": "off",
"no-cond-assign": ["error", "except-parens"],
"no-param-reassign": "off",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-restricted-syntax": "off",
"no-return-await": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}