test_web_router/tslint.json
2017-06-07 15:55:14 +09:00

30 lines
543 B
JSON

{
"rules": {
"indent": [
true,
4,
"spaces"
],
"quotemark": [
"single"
],
"only-arrow-functions": [
false, "allow-declarations", "allow-named-functions"
],
"no-console": [false],
"prefer-const": false,
"member-access": false,
"no-unused-expression": true,
"no-duplicate-variable": true,
"object-literal-sort-keys" : false,
"curly": true,
"class-name": true,
"triple-equals": [
true
],
"semicolon": [
true,
"always"
]
}
}