forked from Hexlet/hexlet-sicp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.yml
36 lines (31 loc) · 852 Bytes
/
.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
---
parser: "@babel/eslint-parser"
plugins:
- react
- functional
extends:
- airbnb
- "plugin:functional/external-vanilla-recommended"
- "plugin:functional/recommended"
- "plugin:react/recommended"
- "plugin:react-hooks/recommended"
env:
browser: true
node: true
rules:
import/extensions: 0
import/no-unresolved: 0
react/prop-types: 0
no-console: 0
functional/no-conditional-statement: 0
functional/no-expression-statement: 0
functional/immutable-data: 0
functional/functional-parameters: 0
functional/no-try-statement: 0
functional/no-throw-statement: 0
functional/no-return-void: 0
functional/no-conditional-statements: 0
functional/no-expression-statements: 0
no-underscore-dangle: [2, { "allow": ["__filename", "__dirname"] }]
testing-library/no-debug: 0
react/function-component-definition: 0