anything-llm/frontend/.eslintrc.cjs

21 lines
594 B
JavaScript
Raw Normal View History

2023-06-04 04:28:07 +02:00
module.exports = {
"env": { "browser": true, "es2020": true },
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended"
2023-06-04 04:28:07 +02:00
],
"files": ["**/*.js", "**/*.jsx"],
"linterOptions": { "reportUnusedDisableDirectives": true },
"parserOptions": { "ecmaVersion": "latest", "sourceType": "module", "ecmaFeatures": { "jsx": true } },
"settings": { "react": { "version": '18.2' } },
"plugins": [
"react-refresh",
"react-hooks"
],
"rules": {
"react-refresh/only-export-components": "warn"
}
2023-06-04 04:28:07 +02:00
}