phantasmal-world/.eslintrc.json

46 lines
1.5 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-constant-condition": ["warn", { "checkLoops": false }],
"no-empty": "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"
}