mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 23:44:11 +02:00
35 lines
804 B
JSON
35 lines
804 B
JSON
{
|
|
"defaultSeverity": "error",
|
|
"extends": [
|
|
"tslint:latest",
|
|
"tslint-config-prettier",
|
|
"tslint-eslint-rules",
|
|
"tslint-react-hooks"
|
|
],
|
|
"linterOptions": {
|
|
"exclude": ["node_modules"]
|
|
},
|
|
"rules": {
|
|
"no-constant-condition": true,
|
|
"no-console": false,
|
|
"interface-name": [true, "always-prefix"],
|
|
"object-curly-spacing": true,
|
|
"object-literal-sort-keys": false,
|
|
|
|
"member-access": [true, "no-public"],
|
|
"no-var-keyword": true,
|
|
"typedef": [
|
|
true,
|
|
"parameter",
|
|
"property-declaration",
|
|
"member-variable-declaration"
|
|
],
|
|
"no-eval": true,
|
|
"no-parameter-reassignment": true,
|
|
"no-submodule-imports": false,
|
|
|
|
"react-hooks-nesting": "error"
|
|
},
|
|
"rulesDirectory": ["node_modules/tslint-eslint-rules/dist/rules"]
|
|
}
|