-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
86 lines (83 loc) · 2.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// @ts-check
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
);
// export default [{
// "env": {
// "browser": true,
// "es6": true,
// "node": true
// },
// "extends": [
// "eslint:recommended",
// "plugin:react/recommended",
// "plugin:jsx-a11y/recommended",
// "plugin:vitest/recommended"
// ],
// "globals": {
// "Atomics": "readonly",
// "SharedArrayBuffer": "readonly"
// },
// "parser": "@typescript-eslint/parser",
// "parserOptions": {
// "ecmaFeatures": {
// "jsx": true
// },
// "ecmaVersion": 2018,
// "sourceType": "module"
// },
// plugins: {jsx-a11y,
// "@typescript-eslint", "react", "testcafe", "typescript"},
// "rules": {
// "no-console": "error",
// "max-len": [
// "error",
// 160,
// {
// "ignoreUrls": true,
// "ignoreComments": false,
// "ignoreRegExpLiterals": true,
// "ignoreStrings": false,
// "ignoreTemplateLiterals": false
// }
// ],
// "comma-dangle": [
// "error",
// {
// "arrays": "only-multiline",
// "objects": "only-multiline",
// "imports": "only-multiline",
// "exports": "only-multiline",
// "functions": "only-multiline"
// }
// ],
// // "react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
// // "react-hooks/exhaustive-deps": "warn", // Checks effect dependencies
// "object-curly-spacing": ["warn", "always"],
// "no-duplicate-imports": "error",
// "no-case-declarations": "error",
// "quotes": ["warn", "single", { "avoidEscape": true }],
// "no-unused-vars": "off",
// "@typescript-eslint/no-unused-vars": "error",
// "complexity": ["warn", 200]
// },
// "overrides": [
// {
// "files": ["*.ts*"],
// "rules": {
// "no-undef": "off"
// }
// }
// ],
// "settings": {
// "react": {
// "version": "detect"
// }
// },
// ignores: ["node_modules",
// "dist",
// "coverage"],
// }];