tabby/tslint.json
Eugene Pankov 98fea7b102 .
2016-12-23 10:06:53 +01:00

23 lines
637 B
JSON

{
"rules": {
"indent": [true, "spaces"],
"quotemark": [true, "single"],
"semicolon": false,
"no-inferrable-types": [true, "ignore-params"],
"curly": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-invalid-this": true,
"no-shadowed-variable": true,
"no-unreachable": true,
"no-unused-expression": true,
"no-unused-new": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"new-parens": true
}
}