mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-28 16:07:49 +01:00
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
module.exports = {
|
|
plugins: ["jest", "react", "react-hooks"],
|
|
extends: [
|
|
'plugin:jest/recommended',
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended",
|
|
|
|
],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
}
|
|
};
|