-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
43 lines (42 loc) · 1 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { fixupPluginRules } from "@eslint/compat"
import js from "@eslint/js"
import prettier from "eslint-plugin-prettier/recommended"
import pluginReact from "eslint-plugin-react"
import pluginReactHooks from "eslint-plugin-react-hooks"
import globals from "globals"
import runePlugin from "rune-sdk/eslint.js"
import tseslint from "typescript-eslint"
export default [
{
languageOptions: {
globals: {
...globals.browser,
...globals.es2020,
},
ecmaVersion: "latest",
sourceType: "module",
},
settings: {
react: {
version: "detect",
},
},
},
js.configs.recommended,
...runePlugin.configs.recommended,
pluginReact.configs.flat.recommended,
pluginReact.configs.flat["jsx-runtime"],
...tseslint.configs.recommended,
{
plugins: {
"react-hooks": fixupPluginRules(pluginReactHooks),
},
rules: pluginReactHooks.configs.recommended.rules,
},
prettier,
{
rules: {
"prettier/prettier": "warn",
},
},
]