test_web_router/tslint.json

30 lines
543 B
JSON
Raw Normal View History

2017-06-02 01:43:14 +00:00
{
"rules": {
"indent": [
true,
4,
"spaces"
],
"quotemark": [
"single"
],
2017-06-06 07:16:05 +00:00
"only-arrow-functions": [
false, "allow-declarations", "allow-named-functions"
],
2017-06-07 06:55:14 +00:00
"no-console": [false],
2017-06-06 07:16:05 +00:00
"prefer-const": false,
"member-access": false,
2017-06-02 01:43:14 +00:00
"no-unused-expression": true,
"no-duplicate-variable": true,
2017-06-06 07:16:05 +00:00
"object-literal-sort-keys" : false,
2017-06-02 01:43:14 +00:00
"curly": true,
"class-name": true,
"triple-equals": [
true
],
"semicolon": [
true,
"always"
]
}
}