-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy patheslint.config.mjs
More file actions
79 lines (76 loc) · 1.71 KB
/
Copy patheslint.config.mjs
File metadata and controls
79 lines (76 loc) · 1.71 KB
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
import nextCoreWebVitals from 'eslint-config-next/core-web-vitals';
import nextTypescript from 'eslint-config-next/typescript';
import prettierPlugin from 'eslint-plugin-prettier';
const prettierConfig = {
plugins: {
prettier: prettierPlugin,
},
rules: {
'prettier/prettier': [
'error',
{
singleQuote: true,
jsxSingleQuote: false,
arrowParens: 'avoid',
semi: true,
trailingComma: 'all',
},
],
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-alert': 'error',
'no-debugger': 'error',
'prefer-const': 'error',
'prefer-arrow-callback': 'error',
'no-unused-vars': ['error', { args: 'none' }],
'react/prop-types': 0,
'react/no-unescaped-entities': 0,
},
};
const eslintConfig = [
{
ignores: [
'.next/**',
'build/**',
'coverage/**',
'test-results/**',
'next-env.d.ts',
'cache/**',
'dist-server/**',
],
},
...nextCoreWebVitals,
...nextTypescript,
prettierConfig,
{
files: ['**/*.test.js', '**/*.test.jsx', '**/*.spec.js'],
languageOptions: {
globals: {
jest: 'readonly',
describe: 'readonly',
it: 'readonly',
test: 'readonly',
expect: 'readonly',
beforeEach: 'readonly',
afterEach: 'readonly',
beforeAll: 'readonly',
afterAll: 'readonly',
},
},
},
{
files: ['e2e/**/*.js', 'e2e/**/*.spec.js'],
languageOptions: {
globals: {
test: 'readonly',
expect: 'readonly',
},
},
},
{
files: ['**/*.js', '**/*.jsx', '**/*.cjs'],
rules: {
'@typescript-eslint/no-require-imports': 'off',
},
},
];
export default eslintConfig;