aboutsummaryrefslogtreecommitdiff
path: root/ROADMAP.md
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 13:33:53 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 13:38:48 +0300
commit4416cd11f6570404c3f039f683502a9058b9684c (patch)
tree4f4003a3bb77270ba8641716cb37d6e55af0285f /ROADMAP.md
parent9509148e9dc5120f2026c0337a880089734d8c80 (diff)
downloadeslint-config-4416cd11f6570404c3f039f683502a9058b9684c.tar.xz
eslint-config-4416cd11f6570404c3f039f683502a9058b9684c.zip
Added all the ESLint 's rules
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'ROADMAP.md')
-rw-r--r--ROADMAP.md282
1 files changed, 282 insertions, 0 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
new file mode 100644
index 0000000..8fdb469
--- /dev/null
+++ b/ROADMAP.md
@@ -0,0 +1,282 @@
+# Road Map
+
+## ESLint
+
+- [ ] "accessor-pairs"
+- [ ] "array-bracket-newline"
+- [ ] "array-bracket-spacing"
+- [ ] "array-callback-return"
+- [ ] "array-element-newline"
+- [ ] "arrow-body-style"
+- [ ] "arrow-parens"
+- [ ] "arrow-spacing"
+- [ ] "block-scoped-var"
+- [ ] "block-spacing"
+- [ ] "brace-style"
+- [ ] "callback-return"
+- [ ] "camelcase"
+- [ ] "capitalized-comments"
+- [ ] "class-methods-use-this"
+- [ ] "comma-dangle"
+- [ ] "comma-spacing"
+- [ ] "comma-style"
+- [ ] "complexity"
+- [ ] "computed-property-spacing"
+- [ ] "consistent-return"
+- [ ] "consistent-this"
+- [ ] "constructor-super"
+- [ ] "curly"
+- [ ] "default-case"
+- [ ] "default-case-last"
+- [ ] "default-param-last"
+- [ ] "dot-location"
+- [ ] "dot-notation"
+- [ ] "eol-last"
+- [ ] "eqeqeq"
+- [ ] "for-direction"
+- [ ] "func-call-spacing"
+- [ ] "func-name-matching"
+- [ ] "func-names"
+- [ ] "func-style"
+- [ ] "function-call-argument-newline"
+- [ ] "function-paren-newline"
+- [ ] "generator-star-spacing"
+- [ ] "getter-return"
+- [ ] "global-require"
+- [ ] "grouped-accessor-pairs"
+- [ ] "guard-for-in"
+- [ ] "handle-callback-err"
+- [ ] "id-blacklist"
+- [ ] "id-length"
+- [ ] "id-match"
+- [ ] "implicit-arrow-linebreak"
+- [ ] "indent"
+- [ ] "indent-legacy"
+- [ ] "init-declarations"
+- [ ] "jsx-quotes"
+- [ ] "key-spacing"
+- [ ] "keyword-spacing"
+- [ ] "line-comment-position"
+- [ ] "linebreak-style"
+- [ ] "lines-around-comment"
+- [ ] "lines-around-directive"
+- [ ] "lines-between-class-members"
+- [ ] "max-classes-per-file"
+- [ ] "max-depth"
+- [ ] "max-len"
+- [ ] "max-lines"
+- [ ] "max-lines-per-function"
+- [ ] "max-nested-callbacks"
+- [ ] "max-params"
+- [ ] "max-statements"
+- [ ] "max-statements-per-line"
+- [ ] "multiline-comment-style"
+- [ ] "multiline-ternary"
+- [ ] "new-cap"
+- [ ] "new-parens"
+- [ ] "newline-after-var"
+- [ ] "newline-before-return"
+- [ ] "newline-per-chained-call"
+- [ ] "no-alert"
+- [ ] "no-array-constructor"
+- [ ] "no-async-promise-executor"
+- [ ] "no-await-in-loop"
+- [ ] "no-bitwise"
+- [ ] "no-buffer-constructor"
+- [ ] "no-caller"
+- [ ] "no-case-declarations"
+- [ ] "no-catch-shadow"
+- [ ] "no-class-assign"
+- [ ] "no-compare-neg-zero"
+- [ ] "no-cond-assign"
+- [ ] "no-confusing-arrow"
+- [ ] "no-console"
+- [ ] "no-const-assign"
+- [ ] "no-constant-condition"
+- [ ] "no-constructor-return"
+- [ ] "no-continue"
+- [ ] "no-control-regex"
+- [ ] "no-debugger"
+- [ ] "no-delete-var"
+- [ ] "no-div-regex"
+- [ ] "no-dupe-args"
+- [ ] "no-dupe-class-members"
+- [ ] "no-dupe-else-if"
+- [ ] "no-dupe-keys"
+- [ ] "no-duplicate-case"
+- [ ] "no-duplicate-imports"
+- [ ] "no-else-return"
+- [ ] "no-empty"
+- [ ] "no-empty-character-class"
+- [ ] "no-empty-function"
+- [ ] "no-empty-pattern"
+- [ ] "no-eq-null"
+- [ ] "no-eval"
+- [ ] "no-ex-assign"
+- [ ] "no-extend-native"
+- [ ] "no-extra-bind"
+- [ ] "no-extra-boolean-cast"
+- [ ] "no-extra-label"
+- [ ] "no-extra-parens"
+- [ ] "no-extra-semi"
+- [ ] "no-fallthrough"
+- [ ] "no-floating-decimal"
+- [ ] "no-func-assign"
+- [ ] "no-global-assign"
+- [ ] "no-implicit-coercion"
+- [ ] "no-implicit-globals"
+- [ ] "no-implied-eval"
+- [ ] "no-import-assign"
+- [ ] "no-inline-comments"
+- [ ] "no-inner-declarations"
+- [ ] "no-invalid-regexp"
+- [ ] "no-invalid-this"
+- [ ] "no-irregular-whitespace"
+- [ ] "no-iterator"
+- [ ] "no-label-var"
+- [ ] "no-labels"
+- [ ] "no-lone-blocks"
+- [ ] "no-lonely-if"
+- [ ] "no-loop-func"
+- [ ] "no-magic-numbers"
+- [ ] "no-misleading-character-class"
+- [ ] "no-mixed-operators"
+- [ ] "no-mixed-requires"
+- [ ] "no-mixed-spaces-and-tabs"
+- [ ] "no-multi-assign"
+- [ ] "no-multi-spaces"
+- [ ] "no-multi-str"
+- [ ] "no-multiple-empty-lines"
+- [ ] "no-native-reassign"
+- [ ] "no-negated-condition"
+- [ ] "no-negated-in-lhs"
+- [ ] "no-nested-ternary"
+- [ ] "no-new"
+- [ ] "no-new-func"
+- [ ] "no-new-object"
+- [ ] "no-new-require"
+- [ ] "no-new-symbol"
+- [ ] "no-new-wrappers"
+- [ ] "no-obj-calls"
+- [ ] "no-octal"
+- [ ] "no-octal-escape"
+- [ ] "no-param-reassign"
+- [ ] "no-path-concat"
+- [ ] "no-plusplus"
+- [ ] "no-process-env"
+- [ ] "no-process-exit"
+- [ ] "no-proto"
+- [ ] "no-prototype-builtins"
+- [ ] "no-redeclare"
+- [ ] "no-regex-spaces"
+- [ ] "no-restricted-exports"
+- [ ] "no-restricted-globals"
+- [ ] "no-restricted-imports"
+- [ ] "no-restricted-modules"
+- [ ] "no-restricted-properties"
+- [ ] "no-restricted-syntax"
+- [ ] "no-return-assign"
+- [ ] "no-return-await"
+- [ ] "no-script-url"
+- [ ] "no-self-assign"
+- [ ] "no-self-compare"
+- [ ] "no-sequences"
+- [ ] "no-setter-return"
+- [ ] "no-shadow"
+- [ ] "no-shadow-restricted-names"
+- [ ] "no-spaced-func"
+- [ ] "no-sparse-arrays"
+- [ ] "no-sync"
+- [ ] "no-tabs"
+- [ ] "no-template-curly-in-string"
+- [ ] "no-ternary"
+- [ ] "no-this-before-super"
+- [ ] "no-throw-literal"
+- [ ] "no-trailing-spaces"
+- [ ] "no-undef"
+- [ ] "no-undef-init"
+- [ ] "no-undefined"
+- [ ] "no-underscore-dangle"
+- [ ] "no-unexpected-multiline"
+- [ ] "no-unmodified-loop-condition"
+- [ ] "no-unneeded-ternary"
+- [ ] "no-unreachable"
+- [ ] "no-unsafe-finally"
+- [ ] "no-unsafe-negation"
+- [ ] "no-unused-expressions"
+- [ ] "no-unused-labels"
+- [ ] "no-unused-vars"
+- [ ] "no-use-before-define"
+- [ ] "no-useless-backreference"
+- [ ] "no-useless-call"
+- [ ] "no-useless-catch"
+- [ ] "no-useless-computed-key"
+- [ ] "no-useless-concat"
+- [ ] "no-useless-constructor"
+- [ ] "no-useless-escape"
+- [ ] "no-useless-rename"
+- [ ] "no-useless-return"
+- [ ] "no-var"
+- [ ] "no-void"
+- [ ] "no-warning-comments"
+- [ ] "no-whitespace-before-property"
+- [ ] "no-with"
+- [ ] "nonblock-statement-body-position"
+- [ ] "object-curly-newline"
+- [ ] "object-curly-spacing"
+- [ ] "object-property-newline"
+- [ ] "object-shorthand"
+- [ ] "one-var"
+- [ ] "one-var-declaration-per-line"
+- [ ] "operator-assignment"
+- [ ] "operator-linebreak"
+- [ ] "padded-blocks"
+- [ ] "padding-line-between-statements"
+- [ ] "prefer-arrow-callback"
+- [ ] "prefer-const"
+- [ ] "prefer-destructuring"
+- [ ] "prefer-exponentiation-operator"
+- [ ] "prefer-named-capture-group"
+- [ ] "prefer-numeric-literals"
+- [ ] "prefer-object-spread"
+- [ ] "prefer-promise-reject-errors"
+- [ ] "prefer-reflect"
+- [ ] "prefer-regex-literals"
+- [ ] "prefer-rest-params"
+- [ ] "prefer-spread"
+- [ ] "prefer-template"
+- [ ] "quote-props"
+- [ ] "quotes"
+- [ ] "radix"
+- [ ] "require-atomic-updates"
+- [ ] "require-await"
+- [ ] "require-jsdoc"
+- [ ] "require-unicode-regexp"
+- [ ] "require-yield"
+- [ ] "rest-spread-spacing"
+- [ ] "semi"
+- [ ] "semi-spacing"
+- [ ] "semi-style"
+- [ ] "sort-imports"
+- [ ] "sort-keys"
+- [ ] "sort-vars"
+- [ ] "space-before-blocks"
+- [ ] "space-before-function-paren"
+- [ ] "space-in-parens"
+- [ ] "space-infix-ops"
+- [ ] "space-unary-ops"
+- [ ] "spaced-comment"
+- [ ] "strict"
+- [ ] "switch-colon-spacing"
+- [ ] "symbol-description"
+- [ ] "template-curly-spacing"
+- [ ] "template-tag-spacing"
+- [ ] "unicode-bom"
+- [ ] "use-isnan"
+- [ ] "valid-jsdoc"
+- [ ] "valid-typeof"
+- [ ] "vars-on-top"
+- [ ] "wrap-iife"
+- [ ] "wrap-regex"
+- [ ] "yield-star-spacing"
+- [ ] "yoda"