-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc
99 lines (99 loc) · 1.74 KB
/
.eslintrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# {
# "rules": {
# "indent": [
# "error",
# 4,
# {
# "SwitchCase": 1
# }
# ],
# "quotes": [
# "error",
# "single"
# ],
# "linebreak-style": [
# "error",
# "unix"
# ],
# "no-multiple-empty-lines": [
# "error",
# {
# "max": 2
# }
# ],
# "import/prefer-default-export": [
# "off"
# ],
# "import/no-absolute-path": [
# "off"
# ],
# "react/jsx-indent": [
# "error",
# 4
# ],
# "react/prefer-stateless-function": [
# "off"
# ],
# "react/self-closing-comp": [
# "off"
# ],
# "react/forbid-prop-types": [
# "off"
# ],
# "import/no-extraneous-dependencies": [
# "off"
# ],
# "import/no-unresolved": [
# "off"
# ],
# "import/extensions": [
# "off",
# "never"
# ],
# "no-underscore-dangle": [
# "off"
# ],
# "react/jsx-indent-props": [
# "error",
# 4
# ],
# "no-confusing-arrow": [
# "off"
# ],
# "react/no-string-refs": [
# "off"
# ],
# "react/jsx-closing-bracket-location": [
# "off"
# ]
# },
# "ecmaFeatures": {
# "modules": true,
# "jsx": true
# },
# "env": {
# "es6": true,
# "browser": true,
# "meteor": true
# },
# "plugins": [
# "meteor",
# "react"
# ],
# "extends": [
# "airbnb",
# "plugin:meteor/recommended",
# "plugin:react/recommended"
# ],
# "parser": "babel-eslint",
# "parserOptions": {
# "ecmaFeatures": {
# "jsx": true
# },
# "ecmaVersion": "2017",
# "allowImportExportEverywhere": true
# },
# "settings": {
# "import/resolver": "meteor"
# }
# }