28 строки
525 B
JSON
28 строки
525 B
JSON
{
|
|
"extends": [
|
|
"tslint:recommended",
|
|
"tslint-react",
|
|
"tslint-config-prettier"
|
|
],
|
|
"rules": {
|
|
"quotemark": {
|
|
"options": [
|
|
"double",
|
|
"jsx-double"
|
|
]
|
|
},
|
|
"member-access": false,
|
|
"object-literal-sort-keys": false,
|
|
"array-type": false,
|
|
"ordered-imports": false,
|
|
"no-shadowed-variable": false,
|
|
"no-console": false,
|
|
"max-classes-per-file": false
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"config/**/*.js",
|
|
"node_modules/**/*.ts"
|
|
]
|
|
}
|
|
} |