-
Notifications
You must be signed in to change notification settings - Fork 1
/
eslint.config.mjs
83 lines (76 loc) · 2.33 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
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { FlatCompat } from '@eslint/eslintrc'
import js from '@eslint/js'
import nextNext from '@next/eslint-plugin-next'
import tsParser from '@typescript-eslint/parser'
import jsxA11Y from 'eslint-plugin-jsx-a11y'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})
export default [
{
ignores: [
'**/.vscode',
'**/node_modules',
'**/build',
'**/dist',
'**/.github',
'**/.git',
'**/.idea',
'**/.next',
'**/.husky',
'**/storybook-static',
'**/mockServiceWorker.js',
'**/tests-examples',
'./playwright-report',
'./test-results',
'./e2e/tablet',
'./e2e/tablet-landscape',
],
},
...compat.extends('ts-prefixer', 'plugin:jsx-a11y/recommended'),
{
plugins: {
'@next/next': nextNext,
'jsx-a11y': jsxA11Y,
},
languageOptions: {
globals: {},
parser: tsParser,
ecmaVersion: 5,
sourceType: 'script',
parserOptions: {
project: ['tsconfig.json'],
},
},
settings: {},
rules: {
'@next/next/google-font-display': 'warn',
'@next/next/google-font-preconnect': 'warn',
'@next/next/inline-script-id': 'error',
'@next/next/next-script-for-ga': 'warn',
'@next/next/no-assign-module-variable': 'error',
'@next/next/no-async-client-component': 'error',
'@next/next/no-before-interactive-script-outside-document': 'warn',
'@next/next/no-css-tags': 'warn',
'@next/next/no-document-import-in-page': 'error',
'@next/next/no-duplicate-head': 'error',
'@next/next/no-head-element': 'warn',
'@next/next/no-head-import-in-document': 'error',
'@next/next/no-html-link-for-pages': 'warn',
'@next/next/no-img-element': 'warn',
'@next/next/no-page-custom-font': 'warn',
'@next/next/no-script-component-in-head': 'error',
'@next/next/no-styled-jsx-in-document': 'warn',
'@next/next/no-sync-scripts': 'warn',
'@next/next/no-title-in-document-head': 'warn',
'@next/next/no-typos': 'warn',
'@next/next/no-unwanted-polyfillio': 'warn',
},
},
]