diff options
| author | Mohammad Amoush <47069173+mamoush34@users.noreply.github.com> | 2020-01-19 15:15:53 +0300 |
|---|---|---|
| committer | Mohammad Amoush <47069173+mamoush34@users.noreply.github.com> | 2020-01-19 15:15:53 +0300 |
| commit | 7683e1fbb53fe683c0d04e537d89fb53d768e852 (patch) | |
| tree | d81eebcd5a129550a49fdfc852b8bb6220907a1a /tslint.json | |
| parent | f4382d73eec75f7d7f4bfe6eae3fb1efa128a021 (diff) | |
| parent | aff9cc02750eb032ade98d77cf9ff45677063fc8 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into webcam_mohammad
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 |
