aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
authorkimdahey <claire_kim1@brown.edu>2019-12-03 16:32:13 -0500
committerkimdahey <claire_kim1@brown.edu>2019-12-03 16:32:13 -0500
commit70583fa47bd9920d1823d381708c81283534d6ce (patch)
tree5c81976813436852403ea352797efe1d518dbb1a /tslint.json
parent56b83d89f37a5523ab319977e3385f539ecaf996 (diff)
parent213962406327cc2f7267064f3016fabf0fd16872 (diff)
merged w master
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json58
1 files changed, 32 insertions, 26 deletions
diff --git a/tslint.json b/tslint.json
index 76d28b375..0056f4266 100644
--- a/tslint.json
+++ b/tslint.json
@@ -1,32 +1,18 @@
{
+ "linterOptions": {
+ "exclude": ["./src/client/northstar/**", "**/*.js"]
+ },
"rules": {
- // "no-non-null-assertion": true,
"no-return-await": true,
"no-string-literal": true,
- // "no-var-keyword": true,
- // "no-var-requires": true,
"prefer-object-spread": true,
"prefer-for-of": true,
"no-unnecessary-type-assertion": true,
- // "no-void-expression": [
- // true,
- // "ignore-arrow-function-shorthand"
- // ],
"triple-equals": true,
- // "prefer-const": true,
+ "prefer-const": true,
"no-unnecessary-callback-wrapper": true,
- // "align": [
- // true,
- // "parameters",
- // "arguments",
- // "statements",
- // "members",
- // "elements"
- // ],
"class-name": true,
"arrow-return-shorthand": true,
- // "object-literal-shorthand": true,
- // "object-literal-sort-keys": true,
"semicolon": [
true,
"always"
@@ -35,13 +21,6 @@
true,
"ignore-same-line"
],
- // "quotemark": [
- // true,
- // "double",
- // "jsx-double",
- // "avoid-template",
- // "avoid-escape"
- // ],
"no-tautology-expression": true,
"unnecessary-constructor": true
// "trailing-comma": [
@@ -52,6 +31,33 @@
// }
// ],
// "ordered-imports": true
+ // "quotemark": [
+ // true,
+ // "double",
+ // "jsx-double",
+ // "avoid-template",
+ // "avoid-escape"
+ // ],
+ // "object-literal-shorthand": true,
+ // "object-literal-sort-keys": true,
+ // "align": [
+ // true,
+ // "parameters",
+ // "arguments",
+ // "statements",
+ // "members",
+ // "elements"
+ // ],
+ // "no-void-expression": [
+ // true,
+ // "ignore-arrow-function-shorthand"
+ // ],
+ // "no-non-null-assertion": true,
+ // "no-var-keyword": true,
+ // "no-var-requires": true,
},
- "defaultSeverity": "warning"
+ "defaultSeverity": "warning",
+ "jsRules": {
+
+ }
} \ No newline at end of file