diff options
| author | Stanley Yip <stanley_yip@brown.edu> | 2020-02-09 14:58:57 -0500 |
|---|---|---|
| committer | Stanley Yip <stanley_yip@brown.edu> | 2020-02-09 14:58:57 -0500 |
| commit | f6179334d6f2942631caa17b7c8ae2531d87c7c4 (patch) | |
| tree | 091da0ef7bedb900c958c28cebe4058fade644cf /tslint.json | |
| parent | 07141291bee793955d7061f4e479942d7aceda67 (diff) | |
| parent | 87167fd126e161b29d8d798a5f04e3cf159aae16 (diff) | |
recommender system works
Diffstat (limited to 'tslint.json')
| -rw-r--r-- | tslint.json | 58 |
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 |
