mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-18 10:14:13 +02:00
40 lines
852 B
JSON
40 lines
852 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"airbnb-base",
|
|
"airbnb-typescript/base",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": "tsconfig.json"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"import"
|
|
],
|
|
"rules": {
|
|
"import/no-unresolved": "error",
|
|
"import/prefer-default-export": "off",
|
|
"class-methods-use-this": "off"
|
|
},
|
|
"settings": {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [
|
|
".ts",
|
|
".tsx"
|
|
]
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {
|
|
"alwaysTryTypes": true
|
|
}
|
|
}
|
|
}
|
|
}
|