-
Notifications
You must be signed in to change notification settings - Fork 27
/
eslint.config.js
57 lines (56 loc) · 1.87 KB
/
eslint.config.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";
import importSort from "eslint-plugin-simple-import-sort";
export default tseslint.config(
{
ignores: ["dist", "plugins", "**/*.stories.tsx"],
},
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
"simple-import-sort": importSort,
},
rules: {
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": [
"off",
{ allowConstantExport: true },
],
"no-console": ["error", { allow: ["warn", "error", "info"] }],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"simple-import-sort/imports": [
"error",
{
groups: [
// Node.js builtins
[
"^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)",
],
// Packages. `react` related packages come first, then other packages.
["^react", "^@?\\w"],
// Absolute imports.
["^(@)(/.*|$)"],
// Side effect imports.
["^\\u0000"],
// Relative imports.
["^\\."],
// Style imports.
["^.+\\.s?css$"],
],
},
],
"simple-import-sort/exports": "error",
},
},
);