yumechi-no-kuni/tslint.json

42 lines
940 B
JSON
Raw Normal View History

2016-12-28 16:49:51 -06:00
{
2017-05-24 06:50:17 -05:00
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
2018-04-26 00:44:23 -05:00
"align": false,
2017-05-24 06:50:17 -05:00
"indent": ["tab"],
"quotemark": ["single"],
"no-var-requires": false,
"no-string-throw": false,
"trailing-comma": [false],
"object-literal-sort-keys": false,
"curly": false,
"no-console": [false],
2017-11-13 03:05:35 -06:00
"no-empty":false,
2017-05-24 06:50:17 -05:00
"ordered-imports": [false],
"arrow-parens": false,
2018-09-06 06:06:16 -05:00
"array-type": false,
2017-05-24 06:50:17 -05:00
"object-literal-shorthand": false,
2017-10-06 14:30:57 -05:00
"object-literal-key-quotes": false,
2017-05-24 06:50:17 -05:00
"triple-equals": [false],
"no-shadowed-variable": false,
"no-string-literal": false,
"variable-name": [false],
"comment-format": [false],
"interface-over-type-literal": false,
"max-line-length": [false],
2017-10-06 13:36:46 -05:00
"max-classes-per-file": false,
2017-05-24 06:50:17 -05:00
"member-ordering": [false],
"ban-types": [
"Object"
],
"ban": [
true,
{"name": ["*", "forEach"], "message": "Use for-of loop instead."}
2017-05-24 06:50:17 -05:00
]
},
"rulesDirectory": []
2016-12-28 16:49:51 -06:00
}