-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy patheslint.config.mjs
More file actions
132 lines (130 loc) Β· 4.01 KB
/
eslint.config.mjs
File metadata and controls
132 lines (130 loc) Β· 4.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
import typescriptEslintParser from '@typescript-eslint/parser';
import importPlugin from 'eslint-plugin-import';
import jsxA11y from 'eslint-plugin-jsx-a11y';
import prettier from 'eslint-plugin-prettier';
import react from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import { resolve } from 'path';
import eslintNextPlugin from '@next/eslint-plugin-next';
export default [
{
ignores: [
'**/node_modules/**',
'**/.next/**',
'**/dist/**',
'**/.turbo/**',
'**/coverage/**',
'**/storybook-static/**',
'**/pnpm-lock.yaml',
'**/*.js',
'./eslint.config.mjs',
],
},
{
files: [
'apps/**/src/**/*.{js,jsx,ts,tsx}',
'apps/**/scripts/**/*.{js,jsx,ts,tsx}',
'packages/**/*.{js,jsx,ts,tsx}',
'packages/**/vite.config.ts',
],
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
parser: typescriptEslintParser,
parserOptions: {
project: ['./apps/*/tsconfig.json', './packages/*/tsconfig.json'],
},
},
plugins: {
'@typescript-eslint': typescriptEslintPlugin,
react,
'react-hooks': reactHooks,
'jsx-a11y': jsxA11y,
import: importPlugin,
prettier,
next: eslintNextPlugin,
},
rules: {
...typescriptEslintPlugin.configs.recommended.rules,
...prettier.configs.recommended.rules,
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'import/order': [
'error',
{
groups: [['builtin', 'external'], 'internal', ['parent', 'sibling', 'index']],
'newlines-between': 'always',
},
],
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: 'directive', next: '*' },
{ blankLine: 'any', prev: 'directive', next: 'directive' },
{ blankLine: 'always', prev: 'block', next: '*' },
{ blankLine: 'always', prev: '*', next: 'block' },
{ blankLine: 'always', prev: 'block-like', next: '*' },
{ blankLine: 'always', prev: '*', next: 'block-like' },
{ blankLine: 'always', prev: '*', next: 'function' },
{ blankLine: 'always', prev: 'function', next: '*' },
{ blankLine: 'always', prev: '*', next: ['const', 'let', 'var'] },
{ blankLine: 'any', prev: ['const', 'let', 'var'], next: ['const', 'let', 'var'] },
],
'newline-before-return': 'error',
'@typescript-eslint/no-explicit-any': 'off',
},
settings: {
react: {
version: 'detect',
},
},
},
{
files: ['apps/**/tests/**/*.{js,jsx,ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
parser: typescriptEslintParser,
},
plugins: {
'@typescript-eslint': typescriptEslintPlugin,
react,
'react-hooks': reactHooks,
'jsx-a11y': jsxA11y,
import: importPlugin,
prettier,
},
rules: {
...prettier.configs.recommended.rules,
...eslintNextPlugin.configs.recommended.rules,
...eslintNextPlugin.configs['core-web-vitals'].rules,
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'@typescript-eslint/await-thenable': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
settings: {
react: {
version: 'detect',
},
},
},
];