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.
24 lines
405 B
24 lines
405 B
{
|
|
"extends": [
|
|
"tslint:recommended",
|
|
"tslint-react",
|
|
"tslint-config-prettier"
|
|
],
|
|
"rules": {
|
|
"interface-name": false,
|
|
"curly": false,
|
|
"no-console": false,
|
|
"array-type": [
|
|
true,
|
|
"array"
|
|
]
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"config/**/*.js",
|
|
"node_modules/**/*.ts",
|
|
"react-dev-utils/*",
|
|
"coverage/lcov-report/*.js"
|
|
]
|
|
}
|
|
} |