Skip to content

Commit 7211a2c

Browse files
committed
removed 'no-mixed-operators', fixed'no-multi-spaced' rules
1 parent 8e6b8ae commit 7211a2c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = {
4444
'import/no-extraneous-dependencies': 0,
4545
'no-return-assign': 0,
4646
'no-trailing-spaces': 0,
47-
'no-mixed-operators': 0,
47+
'no-multi-spaces': 0,
4848
'no-mixed-spaces-and-tabs': 0,
4949
'no-tabs': 0,
5050
'no-async-promise-executor': 0,
@@ -64,7 +64,6 @@ module.exports = {
6464
'no-use-before-define': [2, { 'functions': false }],
6565
'object-curly-newline': [2, { 'consistent': true }],
6666
'operator-linebreak': [2, 'after'],
67-
'no-multi-spaces': [2, { exceptions: { 'VariableDeclarator': true } }],
6867
'indent': [2, 'tab', { 'SwitchCase': 1 }],
6968
'sort-imports': [2, {
7069
'ignoreCase': true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kakadu-dev/eslint-config-react-js",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Eslint configuration for ReactJS applications",
55
"main": "index.js",
66
"publishConfig": {

0 commit comments

Comments
 (0)