Initial commit

This commit is contained in:
Ian Richardson
2019-02-23 14:04:55 -06:00
parent 10d53c154c
commit 5a6297f975
7 changed files with 123 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"extends": ["tslint:latest", "tslint-eslint-rules", "tslint-config-prettier"],
"rulesDirectory": ["tslint-plugin-prettier"],
"rules": {
"prettier": true,
"interface-name": false,
"no-submodule-imports": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
]
}
}