You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
630 B
25 lines
630 B
5 years ago
|
{
|
||
|
"defaultSeverity": "error",
|
||
|
"extends": ["tslint:recommended", "tslint-react-hooks"],
|
||
|
"jsRules": {
|
||
|
"trailing-comma": false
|
||
|
},
|
||
|
"rules": {
|
||
|
"interface-name": [true, "never-prefix"],
|
||
|
"no-console": false,
|
||
|
"no-shadowed-variable": false,
|
||
|
"arrow-parens": false,
|
||
|
"trailing-comma": false,
|
||
|
"member-access": [true, "no-public"],
|
||
|
"callable-types": false,
|
||
|
"no-empty-interface": false,
|
||
|
"only-arrow-functions": false,
|
||
|
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
|
||
|
"object-literal-sort-keys": false
|
||
|
},
|
||
|
"rulesDirectory": [],
|
||
|
"linterOptions": {
|
||
|
"exclude": ["./**/node_modules/**"]
|
||
|
}
|
||
|
}
|