Fixed eslint import issue

This commit is contained in:
Dustin Brett 2021-06-05 21:30:22 -07:00
parent bc0b03737e
commit c17cf93f6d

View File

@ -54,11 +54,19 @@
"ignoreRestSiblings": true
}
],
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never",
"tsx": "never"
}
],
"import/no-cycle": "off",
"import/prefer-default-export": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
"react/jsx-filename-extension": ["warn", { "extensions": [".tsx"] }],
"react/jsx-props-no-spreading": "off",
"react/prop-types": "off",
"react/require-default-props": "off",