Skip to content

Commit

Permalink
updating .eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
delambo committed Sep 21, 2016
1 parent b929c09 commit cc316b7
Showing 1 changed file with 25 additions and 27 deletions.
52 changes: 25 additions & 27 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
{
"extends": [
"airbnb"
],
"extends": [
"airbnb"
],

"env": {
"jest": true
},
"env": {
"jest": true
},

"plugins": [
"json"
],
"plugins": [
"json"
],

"rules": {
"no-lonely-if": 2,
"no-nested-ternary": 2,
"max-nested-callbacks": [2, { "max": 5 }],
"constructor-super": 2,
"no-this-before-super": 2,
"prefer-spread": 2,
"prefer-reflect": 2,
"no-warning-comments": [1, { "terms": ["todo", "fixme"], "location": "start" }],
"react/sort-comp": 0,
"react/require-extension": "off",
"import/extensions": [1, { "js": "never" }],
"import/no-extraneous-dependencies": [0],
"no-param-reassign": 0
},
"rules": {
"no-lonely-if": 2,
"no-nested-ternary": 2,
"max-nested-callbacks": [2, { "max": 5 }],
"constructor-super": 2,
"no-this-before-super": 2,
"prefer-spread": 2,
"prefer-reflect": 2,
"no-warning-comments": [1, { "terms": ["todo", "fixme"], "location": "start" }],
"import/extensions": [1, { "js": "never" }],
"import/no-extraneous-dependencies": [0],
"no-param-reassign": 0
},

"ignore": [
"coverage"
]
"ignore": [
"coverage"
]
}

0 comments on commit cc316b7

Please sign in to comment.