-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
53 lines (53 loc) · 1.39 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: {
browser: true,
es2020: true,
node: true,
},
settings: {
react: {
version: 'detect',
},
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:storybook/recommended',
'plugin:jsx-a11y/recommended',
'plugin:prettier/recommended',
],
plugins: ['jsx-a11y', 'react-refresh', 'unicorn'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
ignorePatterns: ['dist', 'postcss.config.js', 'tailwind.config.js'],
rules: {
'prettier/prettier': 'warn',
'no-duplicate-imports': 'error',
'no-template-curly-in-string': 'error',
'no-use-before-define': 'error',
'@typescript-eslint/no-unused-vars': 'error',
},
overrides: [
{
extends: ['plugin:@typescript-eslint/disable-type-checked'],
files: ['plopfile.js', './.storybook/*.{js,jsx,ts,tsx}'],
},
{
rules: {
'@typescript-eslint/no-unsafe-call': 'off',
},
files: ['**/*.stories.{jsx,tsx}'],
},
],
};