Update checked-in dependencies
This commit is contained in:
parent
3fe5410805
commit
931cd264c2
72 changed files with 2295 additions and 1569 deletions
19
node_modules/eslint-plugin-import/config/flat/react.js
generated
vendored
Normal file
19
node_modules/eslint-plugin-import/config/flat/react.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* Adds `.jsx` as an extension, and enables JSX parsing.
|
||||
*
|
||||
* Even if _you_ aren't using JSX (or .jsx) directly, if your dependencies
|
||||
* define jsnext:main and have JSX internally, you may run into problems
|
||||
* if you don't enable these settings at the top level.
|
||||
*/
|
||||
module.exports = {
|
||||
settings: {
|
||||
'import/extensions': ['.js', '.jsx', '.mjs', '.cjs'],
|
||||
},
|
||||
languageOptions: {
|
||||
parserOptions: {
|
||||
ecmaFeatures: {
|
||||
jsx: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue