forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
27 lines (23 loc) · 648 Bytes
/
Copy path.eslintrc
File metadata and controls
27 lines (23 loc) · 648 Bytes
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
extends:
- eslint-config-airbnb
- eslint-config-prettier
parser: babel-eslint
parserOptions:
ecmaFeatures:
experimentalDecorators: true
env:
browser: true
node: true
rules:
# Disabled due to conflicts with monorepo structure
# See: https://github.com/benmosher/eslint-plugin-import/issues/458
import/no-extraneous-dependencies: off
import/no-unresolved: off
import/extensions: off
# These rules are covered by prettier
react/jsx-indent: off
react/jsx-indent-props: off
# These rules are super annoying in this project
react/jsx-filename-extension: off
class-methods-use-this: off
no-confusing-arrow: off