-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.yml
43 lines (43 loc) · 1.08 KB
/
.eslintrc.yml
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
env:
browser: true
es2021: true
extends:
- eslint:recommended
- airbnb
- airbnb-typescript
- plugin:@typescript-eslint/recommended
- plugin:react/recommended
- plugin:react/jsx-runtime
- prettier
parser: '@typescript-eslint/parser'
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: latest
sourceType: module
project: './tsconfig.json'
plugins:
- '@typescript-eslint'
- eslint-plugin-react-compiler
- react
- unicorn
rules:
import/prefer-default-export: off
react/jsx-filename-extension: [2, { extensions: ['.jsx', '.tsx'] }]
react/require-default-props: off
'@typescript-eslint/explicit-function-return-type': off
unicorn/filename-case: ['error', { 'case': 'kebabCase' }]
require-await: error
react-compiler/react-compiler: error
import/extensions: off
settings:
import/resolver:
alias:
map:
- - '~/components'
- './apps/client/components'
- - '~/pages'
- './apps/client/pages'
- - '~/services'
- './apps/client/services'
extensions: ['.ts', '.js', '.jsx', '.ts', '.tsx', '.json']