2019-07-03 02:56:33 +08:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"prettier",
|
|
|
|
"prettier/@typescript-eslint",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
2019-09-14 23:31:03 +08:00
|
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
2020-01-04 23:23:25 +08:00
|
|
|
"root": true,
|
2019-07-03 02:56:33 +08:00
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
|
|
|
"jest": true,
|
|
|
|
"node": true
|
|
|
|
},
|
2020-01-04 23:23:25 +08:00
|
|
|
"ignorePatterns": ["webpack.*.js"],
|
2019-07-03 02:56:33 +08:00
|
|
|
"rules": {
|
2020-01-04 23:23:25 +08:00
|
|
|
"@typescript-eslint/array-type": ["warn", { "default": "array", "readonly": "array" }],
|
2019-07-03 02:56:33 +08:00
|
|
|
"@typescript-eslint/camelcase": "off",
|
|
|
|
"@typescript-eslint/class-name-casing": "warn",
|
|
|
|
"@typescript-eslint/explicit-function-return-type": ["warn", { "allowExpressions": true }],
|
|
|
|
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
2019-10-02 00:30:26 +08:00
|
|
|
"@typescript-eslint/no-inferrable-types": "off",
|
2019-07-23 21:54:42 +08:00
|
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
2019-07-03 02:56:33 +08:00
|
|
|
"@typescript-eslint/no-parameter-properties": "off",
|
|
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
|
|
"@typescript-eslint/prefer-interface": "off",
|
2019-07-03 06:43:17 +08:00
|
|
|
"no-console": "warn",
|
2019-07-03 02:56:33 +08:00
|
|
|
"no-constant-condition": ["warn", { "checkLoops": false }],
|
|
|
|
"no-empty": "warn",
|
2019-07-22 02:44:34 +08:00
|
|
|
"no-useless-escape": "warn",
|
2019-10-02 00:30:26 +08:00
|
|
|
"prefer-const": "warn",
|
2019-09-14 23:31:03 +08:00
|
|
|
"prettier/prettier": "warn"
|
2019-07-03 02:56:33 +08:00
|
|
|
},
|
|
|
|
"parser": "@typescript-eslint/parser"
|
|
|
|
}
|