1
0
Fork 0
mirror of https://github.com/Findus23/cr-search.git synced 2024-09-19 15:23:44 +02:00
cr-search/web/tslint.json

22 lines
462 B
JSON
Raw Normal View History

2020-03-07 10:45:39 +01:00
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"indent": [true, "spaces", 2],
"interface-name": false,
"no-consecutive-blank-lines": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
2020-03-08 18:48:14 +01:00
"quotemark": [true, "double"],
2020-04-14 21:18:02 +02:00
"trailing-comma": false,
"object-literal-key-quotes": [true, "as-needed"]
2020-03-07 10:45:39 +01:00
}
}