mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"plugins": ["react", "@typescript-eslint", "prettier"],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/array-type": ["warn", "array"],
|
|
"@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",
|
|
"@typescript-eslint/no-inferrable-types": "warn",
|
|
"@typescript-eslint/no-object-literal-type-assertion": [
|
|
"warn",
|
|
{ "allowAsParameter": true }
|
|
],
|
|
"@typescript-eslint/no-parameter-properties": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/prefer-interface": "off",
|
|
"no-console": "warn",
|
|
"no-constant-condition": ["warn", { "checkLoops": false }],
|
|
"no-empty": "warn",
|
|
"no-useless-escape": "warn",
|
|
"prettier/prettier": "warn",
|
|
"react/no-unescaped-entities": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"pragma": "React",
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"parser": "@typescript-eslint/parser"
|
|
}
|