Files
screeps-scripts/tslint.json
2017-11-21 12:55:36 -05:00

20 lines
426 B
JSON

{
"extends" : [
"tslint:recommended"
],
"rules": {
"forin": false,
"interface-name": ["never-prefix"],
"no-console": [false],
"no-namespace": [true, "allow-declarations"],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-leading-underscore"
]
}
}