mirror of
https://github.com/iv-org/close-potential-duplicates.git
synced 2024-11-23 05:49:44 +00:00
42 lines
975 B
Plaintext
42 lines
975 B
Plaintext
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": [
|
||
|
"@typescript-eslint",
|
||
|
"eslint-comments",
|
||
|
"import",
|
||
|
"prettier",
|
||
|
"promise"
|
||
|
],
|
||
|
"extends": [
|
||
|
"airbnb-base",
|
||
|
"eslint:recommended",
|
||
|
"prettier",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:import/errors",
|
||
|
"plugin:import/warnings",
|
||
|
"plugin:promise/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"node": true,
|
||
|
"commonjs": true
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2020,
|
||
|
"sourceType": "module",
|
||
|
"requireConfigFile": false
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-nested-ternary": 0,
|
||
|
"no-inner-declarations": 0,
|
||
|
"import/extensions": 0,
|
||
|
"import/no-unresolved": 0,
|
||
|
"no-param-reassign": [2, { "props": false }],
|
||
|
"@typescript-eslint/no-namespace": 0,
|
||
|
"@typescript-eslint/no-explicit-any": 0,
|
||
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
||
|
"@typescript-eslint/no-non-null-assertion": 0
|
||
|
}
|
||
|
}
|