Skip to content

Commit

Permalink
Fix no-extra-parens rule, v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
beschoenen committed Jun 12, 2019
1 parent 4505bde commit 0d2e4c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mapcreator/eslint-config",
"version": "1.0.2",
"version": "1.0.3",
"description": "MapCreator eslint configs",
"main": "index.js",
"repository": "[email protected]:MapCreatorEU/eslint-config.git",
Expand Down
2 changes: 1 addition & 1 deletion rules/es6/possibleErrors.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
'no-async-promise-executor': 'error',
'no-console': prod('off', 'warn'),
'no-debugger': prod('off'),
'no-extra-parens': prod(),
'no-extra-parens': [prod(), 'all', { nestedBinaryExpressions: false, enforceForArrowConditionals: false }],
'no-misleading-character-class': 'error',
'no-template-curly-in-string': 'error',
},
Expand Down

0 comments on commit 0d2e4c6

Please sign in to comment.