qpa-client/webapp/tslint.json

19 lines
318 B
JSON
Raw Normal View History

2018-08-08 11:49:10 +02:00
{
2018-09-08 17:09:16 +02:00
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier"
],
2018-08-08 11:49:10 +02:00
"linterOptions": {
"exclude": [
"config/**/*.js",
2018-08-23 09:06:27 +02:00
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
2018-08-08 11:49:10 +02:00
]
2018-09-08 17:09:16 +02:00
},
"rules": {
2018-09-16 20:09:19 +02:00
"member-access": false,
"object-literal-sort-keys":false
2018-08-08 11:49:10 +02:00
}
}