Skip to content

Commit

Permalink
Merge pull request #91 from seegno/bugfix/sort-destructure-keys-case-…
Browse files Browse the repository at this point in the history
…sensitive

Fix sort destructure keys rule
  • Loading branch information
joaonice authored Oct 9, 2018
2 parents f98a96e + cdc5d88 commit 91ed7a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"eslint-plugin-new-with-error": "^1.1.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-sort-class-members": "^1.3.0",
"eslint-plugin-sort-destructure-keys": "^1.0.0",
"eslint-plugin-sort-destructure-keys": "^1.1.0",
"eslint-plugin-sort-imports-es6": "^0.0.3",
"eslint-plugin-sql-template": "^2.0.0",
"eslint-plugin-switch-case": "^1.1.2"
Expand Down
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ module.exports = {
'require-yield': 'error',
semi: 'error',
'semi-spacing': 'error',
'sort-destructure-keys/sort-destructure-keys': 2,
'sort-destructure-keys/sort-destructure-keys': ['error', {
caseSensitive: true
}],
'sort-imports-es6/sort-imports-es6': ['error', {
ignoreCase: false,
ignoreMemberSort: false,
Expand Down

0 comments on commit 91ed7a5

Please sign in to comment.