mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-07-13 21:30:57 +02:00
15 lines
376 B
JavaScript
15 lines
376 B
JavaScript
module.exports = {
|
|
env: { browser: true, es2020: true },
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
|
|
plugins: ["react-refresh"],
|
|
rules: {
|
|
"react-refresh/only-export-components": "warn",
|
|
},
|
|
};
|