mirror of
https://github.com/vzakharchenko/huawei-hilink
synced 2024-11-15 18:13:30 +00:00
40 lines
873 B
Plaintext
40 lines
873 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"no-loops"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@shopify/esnext"
|
|
],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [
|
|
".ts",
|
|
".tsx"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"rules": {
|
|
"no-undef": 0,
|
|
"no-process-env": 0,
|
|
"no-unused-vars": 0,
|
|
"require-await": 0,
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"id-length": 0,
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
"@typescript-eslint/no-var-requires": 0,
|
|
"no-console": 0,
|
|
"import/no-unresolved": 0,
|
|
"require-atomic-updates": 0,
|
|
"@shopify/prefer-early-return": 0,
|
|
" import/no-unresolved": 0
|
|
}
|
|
}
|