aboutsummaryrefslogtreecommitdiff
path: root/ROADMAP.md
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 17:21:21 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 17:21:21 +0300
commitdab6a8a84abd417f02816cbe185e3938cea856c0 (patch)
tree3ea00fb93791ae160217c3cf09701bd748ccd434 /ROADMAP.md
parentf577ea55fe8599983e1066e8381317d35ec542c5 (diff)
downloadeslint-config-dab6a8a84abd417f02816cbe185e3938cea856c0.tar.xz
eslint-config-dab6a8a84abd417f02816cbe185e3938cea856c0.zip
feat(typescript): Initial TypeScript's config
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'ROADMAP.md')
-rw-r--r--ROADMAP.md90
1 files changed, 90 insertions, 0 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index a3b33df..a18b7c0 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -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"