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
2019-04-10 10:05:34 +02:00

26 lines
498 B
JSON

{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"quotemark": [true, "double"],
"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"
}
]
}
}