Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"jsx": true
}
},
"plugins": [
"react-hooks"
],
"extends": [
"airbnb",
"plugin:prettier/recommended"
Expand Down Expand Up @@ -45,6 +48,9 @@
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"jsx-a11y/media-has-caption": "off"
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"jsx-a11y/media-has-caption": "off",
'no-param-reassign': ['error', { props: true, ignorePropertyModificationsFor: ['draft'] }]
}
}
Loading