aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/roadmap/react-hooks.md4
-rw-r--r--docs/roadmap/react.md89
2 files changed, 93 insertions, 0 deletions
diff --git a/docs/roadmap/react-hooks.md b/docs/roadmap/react-hooks.md
new file mode 100644
index 0000000..2e651d4
--- /dev/null
+++ b/docs/roadmap/react-hooks.md
@@ -0,0 +1,4 @@
+# React Hooks
+
+- [ ] "exhaustive-deps"
+- [ ] "rules-of-hooks"
diff --git a/docs/roadmap/react.md b/docs/roadmap/react.md
new file mode 100644
index 0000000..20a9b26
--- /dev/null
+++ b/docs/roadmap/react.md
@@ -0,0 +1,89 @@
+# React
+
+- [ ] "boolean-prop-naming"
+- [ ] "button-has-type"
+- [ ] "default-props-match-prop-types"
+- [ ] "destructuring-assignment"
+- [ ] "display-name"
+- [ ] "forbid-component-props"
+- [ ] "forbid-dom-props"
+- [ ] "forbid-elements"
+- [ ] "forbid-foreign-prop-types"
+- [ ] "forbid-prop-types"
+- [ ] "function-component-definition"
+- [ ] "jsx-boolean-value"
+- [ ] "jsx-child-element-spacing"
+- [ ] "jsx-closing-bracket-location"
+- [ ] "jsx-closing-tag-location"
+- [ ] "jsx-curly-brace-presence"
+- [ ] "jsx-curly-newline"
+- [ ] "jsx-curly-spacing"
+- [ ] "jsx-equals-spacing"
+- [ ] "jsx-filename-extension"
+- [ ] "jsx-first-prop-new-line"
+- [ ] "jsx-fragments"
+- [ ] "jsx-handler-names"
+- [ ] "jsx-indent"
+- [ ] "jsx-indent-props"
+- [ ] "jsx-key"
+- [ ] "jsx-max-depth"
+- [ ] "jsx-max-props-per-line"
+- [ ] "jsx-no-bind"
+- [ ] "jsx-no-comment-textnodes"
+- [ ] "jsx-no-duplicate-props"
+- [ ] "jsx-no-literals"
+- [ ] "jsx-no-script-url"
+- [ ] "jsx-no-target-blank"
+- [ ] "jsx-no-undef"
+- [ ] "jsx-no-useless-fragment"
+- [ ] "jsx-one-expression-per-line"
+- [ ] "jsx-pascal-case"
+- [ ] "jsx-props-no-multi-spaces"
+- [ ] "jsx-props-no-spreading"
+- [ ] "jsx-sort-default-props"
+- [ ] "jsx-sort-props"
+- [ ] "jsx-space-before-closing"
+- [ ] "jsx-tag-spacing"
+- [ ] "jsx-uses-react"
+- [ ] "jsx-uses-vars"
+- [ ] "jsx-wrap-multilines"
+- [ ] "no-access-state-in-setstate"
+- [ ] "no-adjacent-inline-elements"
+- [ ] "no-array-index-key"
+- [ ] "no-children-prop"
+- [ ] "no-danger"
+- [ ] "no-danger-with-children"
+- [ ] "no-deprecated"
+- [ ] "no-did-mount-set-state"
+- [ ] "no-did-update-set-state"
+- [ ] "no-direct-mutation-state"
+- [ ] "no-find-dom-node"
+- [ ] "no-is-mounted"
+- [ ] "no-multi-comp"
+- [ ] "no-redundant-should-component-update"
+- [ ] "no-render-return-value"
+- [ ] "no-set-state"
+- [ ] "no-string-refs"
+- [ ] "no-this-in-sfc"
+- [ ] "no-typos"
+- [ ] "no-unescaped-entities"
+- [ ] "no-unknown-property"
+- [ ] "no-unsafe"
+- [ ] "no-unused-prop-types"
+- [ ] "no-unused-state"
+- [ ] "no-will-update-set-state"
+- [ ] "prefer-es6-class"
+- [ ] "prefer-read-only-props"
+- [ ] "prefer-stateless-function"
+- [ ] "prop-types"
+- [ ] "react-in-jsx-scope"
+- [ ] "require-default-props"
+- [ ] "require-optimization"
+- [ ] "require-render-return"
+- [ ] "self-closing-comp"
+- [ ] "sort-comp"
+- [ ] "sort-prop-types"
+- [ ] "state-in-constructor"
+- [ ] "static-property-placement"
+- [ ] "style-prop-object"
+- [ ] "void-dom-elements-no-children"