Files
privacy.sexy/tslint.json
undergroundwires 4e7f244190 Initial commit
2019-12-31 16:23:45 +01:00

20 lines
379 B
JSON

{
"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,
"quotemark": [true, "single"]
}
}