UNPKG

547 BJSONView Raw
1{
2 "parserOptions": {
3 "ecmaVersion": 6,
4 "ecmaFeatures": {
5 "jsx": true
6 }
7 },
8
9 "plugins": [
10 "react"
11 ],
12
13 "rules": {
14 "react/jsx-boolean-value": 2,
15 "react/jsx-curly-spacing": [2, "never"],
16 "react/jsx-equals-spacing": [2, "never"],
17 "react/jsx-indent": [2, 2],
18 "react/jsx-indent-props": [2, 2],
19 "react/jsx-no-duplicate-props": 2,
20 "react/jsx-no-undef": 2,
21 "react/jsx-space-before-closing": 2,
22 "react/jsx-uses-react": 2,
23 "react/jsx-uses-vars": 2,
24 "react/self-closing-comp": 2
25 }
26}