Added model files, tslint.
Model files will likely be externalized to its own 'spec' project when the rest of the project is rewritten in typescript. That module will likely contain processing utilities.
This commit is contained in:
37
tslint.json
Normal file
37
tslint.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"extends": "tslint:latest",
|
||||
"rules": {
|
||||
"semicolon": [
|
||||
true,
|
||||
"never"
|
||||
],
|
||||
"quotemark": [
|
||||
true,
|
||||
"single"
|
||||
],
|
||||
"trailing-comma": [
|
||||
true,
|
||||
{
|
||||
"multiline": "never",
|
||||
"singleline": "never"
|
||||
}
|
||||
],
|
||||
"triple-equals": [
|
||||
true,
|
||||
"allow-null-check",
|
||||
"allow-undefined-check"
|
||||
],
|
||||
"no-console": [
|
||||
false
|
||||
],
|
||||
"no-string-literal": [
|
||||
false
|
||||
],
|
||||
"prefer-conditional-expression": [
|
||||
false
|
||||
],
|
||||
"no-var-requires": false,
|
||||
"object-literal-sort-keys": false,
|
||||
"interface-name": [true, "never-prefix"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user