Skip to content

Commit

Permalink
Merge a5cdc60 into b3e8098
Browse files Browse the repository at this point in the history
  • Loading branch information
d3dc committed Nov 10, 2018
2 parents b3e8098 + a5cdc60 commit 313c6c8
Showing 1 changed file with 18 additions and 35 deletions.
53 changes: 18 additions & 35 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,19 @@
{
"defaultSeverity": "error",
"extends": [
"tslint:latest"
],
"jsRules": {},
"rules": {
"align": [true, "parameters", "statements"],
"arrow-parens": false,
"quotemark": [
true,
"single"
],
"semicolon": [
true,
"never"
],
"indent": [
true,
"tabs",
2
],
"interface-name": false,
"no-submodule-imports": false,
"no-console": [
true,
"log"
],
"object-literal-sort-keys": false,
"trailing-comma": [
true,
{ "esSpecCompliant": true }
]
},
"rulesDirectory": []
}
"defaultSeverity": "error",
"extends": ["tslint:latest"],
"jsRules": {},
"rules": {
"align": [true, "parameters", "statements"],
"arrow-parens": false,
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"indent": [true, "tabs", 2],
"interface-name": false,
"no-submodule-imports": false,
"no-console": [true, "log"],
"object-literal-sort-keys": false,
"trailing-comma": [true, { "esSpecCompliant": true }],
"no-implicit-dependencies": [true, "dev"]
},
"rulesDirectory": []
}

0 comments on commit 313c6c8

Please sign in to comment.