Start on v3.0

This commit is contained in:
apemanzilla
2017-11-21 12:55:36 -05:00
commit 5af6dc5077
9 changed files with 250 additions and 0 deletions

19
tslint.json Normal file
View File

@@ -0,0 +1,19 @@
{
"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"
]
}
}