screeps-ai/tslint.json
2020-05-31 15:06:55 +03:00

22 lines
463 B
JSON

{
"rulesDirectory": "tslint-plugin-prettier",
"extends" : [
"tslint:recommended",
"tslint-config-prettier"
],
"rules": {
"forin": false,
"interface-name": [true, "never-prefix"],
"member-ordering": [false],
"no-console": [false],
"no-namespace": [true, "allow-declarations"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-leading-underscore"
]
}
}