38 lines
710 B
Plaintext
38 lines
710 B
Plaintext
|
{
|
||
|
"root": true,
|
||
|
"env": {
|
||
|
"jest": true
|
||
|
},
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": [
|
||
|
"./tsconfig.json"
|
||
|
]
|
||
|
},
|
||
|
"extends": "airbnb-typescript/base",
|
||
|
"plugins": [
|
||
|
"import",
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"comma-dangle": 0,
|
||
|
"no-underscore-dangle": 0,
|
||
|
"no-param-reassign": 0,
|
||
|
"no-return-assign": 0,
|
||
|
"import/extensions": 0,
|
||
|
"@typescript-eslint/no-redeclare": 0,
|
||
|
"camelcase": "off",
|
||
|
"@typescript-eslint/camelcase": ["warn"]
|
||
|
},
|
||
|
"settings": {
|
||
|
"import/parsers": {
|
||
|
"@typescript-eslint/parser": [
|
||
|
".ts",
|
||
|
".tsx"
|
||
|
]
|
||
|
},
|
||
|
"import/resolver": {
|
||
|
"typescript": {}
|
||
|
}
|
||
|
}
|
||
|
}
|