e0615fa867
📁 Changed TDrive root folder
37 lines
1020 B
Plaintext
37 lines
1020 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "prettier", "unused-imports"],
|
|
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{
|
|
"vars": "all",
|
|
"args": "after-used",
|
|
"ignoreRestSiblings": false,
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"semi": ["off"],
|
|
"@typescript-eslint/semi": ["error"],
|
|
"quotes": ["error", "double", { "avoidEscape": true }],
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/no-explicit-any": 1,
|
|
"@typescript-eslint/no-inferrable-types": [
|
|
"warn",
|
|
{
|
|
"ignoreParameters": true
|
|
}
|
|
],
|
|
"unused-imports/no-unused-imports": "error",
|
|
"@typescript-eslint/no-extra-semi": ["error"],
|
|
"prettier/prettier": 2
|
|
}
|
|
}
|