forked from giscus/giscus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
38 lines (37 loc) · 910 Bytes
/
.eslintrc.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
module.exports = {
parser: '@typescript-eslint/parser',
env: {
node: true,
},
extends: [
'eslint:recommended',
'plugin:jsx-a11y/recommended',
'next/core-web-vitals',
'plugin:prettier/recommended',
],
plugins: ['@typescript-eslint'],
rules: {
'@next/next/no-img-element': 'off',
},
globals: {
React: 'writable',
},
overrides: [
{
files: ['*.ts', '*.tsx'],
extends: ['plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
// Broken with next.js anchors https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/402
// It also doesn't work with next-translate `components` prop in `<Trans>`
'jsx-a11y/anchor-has-content': 'off',
},
},
],
settings: {
react: {
version: 'detect',
},
},
ignorePatterns: ['public/**'],
};