UNPKG

595 BPlain TextView Raw
1{
2 "parser": "babel-eslint",
3 "extends": "airbnb",
4 "rules": {
5 "no-multiple-empty-lines": 0,
6 "no-param-reassign": 0,
7 "padded-blocks": 0,
8 "new-cap": [0, { "capIsNewExceptions": ["React.Component"] }],
9 "react/jsx-closing-bracket-location": [2, { "location": "after-props" }],
10 "template-curly-spacing": ["error", "always"],
11 "react/jsx-curly-spacing": ["error", "always"],
12 "no-confusing-arrow": ["error", {"allowParens": true}],
13 "no-underscore-dangle": 0,
14 "global-require": 0
15 },
16 "env": {
17 "mocha": true
18 },
19 "globals": {
20 "section": true
21 }
22}