summaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-12 10:35:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-12 10:35:41 +0900
commit84df0714d8d86c2a257a4e191ceb8b0818c8de6a (patch)
treef03bff8205a501256fbdf73ed013f2a26e7cd76a /tslint.json
parentadd install/build scripts (diff)
downloadsharkey-84df0714d8d86c2a257a4e191ceb8b0818c8de6a.tar.gz
sharkey-84df0714d8d86c2a257a4e191ceb8b0818c8de6a.tar.bz2
sharkey-84df0714d8d86c2a257a4e191ceb8b0818c8de6a.zip
use eslint
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json71
1 files changed, 0 insertions, 71 deletions
diff --git a/tslint.json b/tslint.json
deleted file mode 100644
index e0ca176f68..0000000000
--- a/tslint.json
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- "defaultSeverity": "error",
- "extends": [
- "tslint:recommended",
- "tslint-sonarts"
- ],
- "jsRules": {},
- "rules": {
- "align": false,
- "indent": [true, "tabs"],
- "quotemark": [true, "single"],
- "no-var-requires": false,
- "no-string-throw": false,
- "trailing-comma": [false],
- "object-literal-sort-keys": false,
- "curly": false,
- "no-console": [false],
- "no-empty": false,
- "ordered-imports": [false],
- "arrow-parens": false,
- "array-type": [true, "array"],
- "object-literal-shorthand": false,
- "object-literal-key-quotes": false,
- "triple-equals": [false],
- "no-shadowed-variable": false,
- "no-string-literal": false,
- "no-conditional-assignment": false,
- "variable-name": [false],
- "comment-format": [false],
- "interface-over-type-literal": false,
- "max-line-length": [false],
- "max-classes-per-file": false,
- "member-ordering": [false],
- "radix": false,
- "ban-types": [
- true,
- ["Object", "Use {} instead."]
- ],
- "ban": [
- true,
- { "name": ["*", "forEach"], "message": "Use for-of loop instead." }
- ],
- "no-duplicate-string": false,
- "no-commented-code": false,
- "cognitive-complexity": false,
- "no-nested-template-literals": false,
- "no-identical-functions": false,
- "max-union-size": false,
- "no-big-function": false,
- "no-statements-same-line": false,
- "no-small-switch": false,
- "no-identical-expressions": false,
- "no-invalid-await": false,
- "prefer-immediate-return": false,
- "no-use-of-empty-return-value": false,
- "no-collapsible-if": false,
- "no-ignored-return": false,
- "no-redundant-boolean": false,
- "prefer-promise-shorthand": false,
- "parameters-max-number": false,
- "no-duplicated-branches": false,
- "no-identical-conditions": false,
- "no-useless-cast": false,
- "no-hardcoded-credentials": false,
- "no-nested-switch": false,
- "unified-signatures": false,
- "no-all-duplicated-branches": false,
- "semicolon": [true, "always"]
- },
- "rulesDirectory": []
-}