fix(core): update

This commit is contained in:
Philipp Kunz
2019-10-30 19:16:37 +01:00
parent 53572dc470
commit 52f370931e
5 changed files with 121 additions and 73 deletions

17
tslint.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}