1
0
Fork 0
mirror of https://github.com/Findus23/devicedetector.net.git synced 2024-09-20 16:53:45 +02:00
devicedetector.net/client/tslint.json

27 lines
498 B
JSON
Raw Normal View History

2019-04-09 13:31:15 +02:00
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
2019-04-10 10:05:34 +02:00
"quotemark": [true, "double"],
2019-04-09 13:31:15 +02:00
"indent": [true, "spaces", 4],
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-consecutive-blank-lines": false,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
]
}
}