33 lines
717 B
JSON
Executable File
33 lines
717 B
JSON
Executable File
{
|
|
"defaultSeverity": "error",
|
|
"extends": [
|
|
"tslint-react",
|
|
"tslint-config-prettier"
|
|
],
|
|
"jsRules": {
|
|
},
|
|
"rules": {
|
|
"jsx-no-multiline-js": false,
|
|
"member-access": false,
|
|
"prefer-for-of": true,
|
|
"prefer-const": true,
|
|
"prefer-readonly": true,
|
|
"typedef": [
|
|
true,
|
|
"property-declaration"
|
|
],
|
|
"ordered-imports": false,
|
|
"quotemark": false,
|
|
"no-console": false,
|
|
"jsx-no-lambda": false
|
|
},
|
|
"rulesDirectory": [
|
|
],
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"dist/**/*.js",
|
|
"config/**/*.js",
|
|
"node_modules/**/*.ts"
|
|
]
|
|
}
|
|
} |