mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
41 lines
No EOL
1.5 KiB
Text
41 lines
No EOL
1.5 KiB
Text
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"arrow-body-style": ["error", "as-needed"],
|
|
"complexity": ["warn", { "max": 50 }],
|
|
"curly": ["error", "multi-line", "consistent"],
|
|
"eqeqeq": ["error", "smart"],
|
|
"no-constant-condition": ["error", { "checkLoops": false }],
|
|
"no-empty": ["error", { "allowEmptyCatch": true }],
|
|
"no-lonely-if": "error",
|
|
"no-var": "error",
|
|
"object-shorthand": "error",
|
|
"one-var": ["error", { "var": "never", "let": "never" }],
|
|
"prefer-arrow-callback": "error",
|
|
"prefer-const": ["error", { "destructuring": "all" }],
|
|
"prefer-object-spread": "error",
|
|
"prefer-rest-params": "warn",
|
|
"prefer-spread": "warn",
|
|
"quote-props": ["error", "consistent-as-needed"],
|
|
"quotes": "error",
|
|
"spaced-comment": ["error", "always", { "markers": ["/"] }],
|
|
"yoda": ["error", "never", { "exceptRange": true }],
|
|
"@typescript-eslint/no-empty-function": ["error", { "allow": ["arrowFunctions"] }],
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", {
|
|
"varsIgnorePattern": "^_",
|
|
"argsIgnorePattern": "^_"
|
|
}]
|
|
}
|
|
} |