feat(typescript): Initial TypeScript's config

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-13 18:21:21 +04:00
parent f577ea55fe
commit dab6a8a84a
9 changed files with 717 additions and 11 deletions

View File

@@ -280,3 +280,93 @@
- [ ] "wrap-regex"
- [ ] "yield-star-spacing"
- [ ] "yoda"
## TypeScript
- [ ] "adjacent-overload-signatures"
- [ ] "array-type"
- [ ] "await-thenable"
- [ ] "ban-ts-comment"
- [ ] "ban-ts-ignore"
- [ ] "ban-types"
- [ ] "brace-style"
- [ ] "camelcase"
- [ ] "class-name-casing"
- [ ] "comma-spacing"
- [ ] "consistent-type-assertions"
- [ ] "consistent-type-definitions"
- [ ] "default-param-last"
- [ ] "explicit-function-return-type"
- [ ] "explicit-member-accessibility"
- [ ] "explicit-module-boundary-types"
- [ ] "func-call-spacing"
- [ ] "generic-type-naming"
- [ ] "indent"
- [ ] "interface-name-prefix"
- [ ] "member-delimiter-style"
- [ ] "member-naming"
- [ ] "member-ordering"
- [ ] "naming-convention"
- [ ] "no-array-constructor"
- [ ] "no-dupe-class-members"
- [ ] "no-dynamic-delete"
- [ ] "no-empty-function"
- [ ] "no-empty-interface"
- [ ] "no-explicit-any"
- [ ] "no-extra-non-null-assertion"
- [ ] "no-extra-parens"
- [ ] "no-extra-semi"
- [ ] "no-extraneous-class"
- [ ] "no-floating-promises"
- [ ] "no-for-in-array"
- [ ] "no-implied-eval"
- [ ] "no-inferrable-types"
- [ ] "no-magic-numbers"
- [ ] "no-misused-new"
- [ ] "no-misused-promises"
- [ ] "no-namespace"
- [ ] "no-non-null-asserted-optional-chain"
- [ ] "no-non-null-assertion"
- [ ] "no-parameter-properties"
- [ ] "no-require-imports"
- [ ] "no-this-alias"
- [ ] "no-throw-literal"
- [ ] "no-type-alias"
- [ ] "no-unnecessary-boolean-literal-compare"
- [ ] "no-unnecessary-condition"
- [ ] "no-unnecessary-qualifier"
- [ ] "no-unnecessary-type-arguments"
- [ ] "no-unnecessary-type-assertion"
- [ ] "no-untyped-public-signature"
- [ ] "no-unused-expressions"
- [ ] "no-unused-vars"
- [ ] "no-unused-vars-experimental"
- [ ] "no-use-before-define"
- [ ] "no-useless-constructor"
- [ ] "no-var-requires"
- [ ] "prefer-as-const"
- [ ] "prefer-for-of"
- [ ] "prefer-function-type"
- [ ] "prefer-includes"
- [ ] "prefer-namespace-keyword"
- [ ] "prefer-nullish-coalescing"
- [ ] "prefer-optional-chain"
- [ ] "prefer-readonly"
- [ ] "prefer-regexp-exec"
- [ ] "prefer-string-starts-ends-with"
- [ ] "promise-function-async"
- [ ] "quotes"
- [ ] "require-array-sort-compare"
- [ ] "require-await"
- [ ] "restrict-plus-operands"
- [ ] "restrict-template-expressions"
- [ ] "return-await"
- [ ] "semi"
- [ ] "space-before-function-paren"
- [ ] "strict-boolean-expressions"
- [ ] "switch-exhaustiveness-check"
- [ ] "triple-slash-reference"
- [ ] "type-annotation-spacing"
- [ ] "typedef"
- [ ] "unbound-method"
- [ ] "unified-signatures"