🚨 Update tslint config

This commit is contained in:
C-3PO 2018-06-21 14:41:13 +02:00
parent 6f59625056
commit 3f5feea1cf
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -1,14 +1,15 @@
{ {
"defaultSeverity": "error", "defaultSeverity": "error",
"extends": [ "extends": [
"tslint:recommended" "tslint:recommended",
], ],
"jsRules": {}, "jsRules": {},
"rules": { "rules": {
"comment-format": false, "comment-format": false,
"indent": [true, "spaces", 2],
"max-line-length": false, "max-line-length": false,
"no-bitwise": false, "no-bitwise": false,
"quotemark": [true, "single"] "quotemark": [true, "single"],
}, },
"rulesDirectory": [] "rulesDirectory": [],
} }