Skip to content

Commit

Permalink
Codeclimate - attempt 2 to fix eslint checks [ci skip]
Browse files Browse the repository at this point in the history
'caseInsensitive' was the latest addition to the import plugin
  • Loading branch information
KillyMXI committed Oct 29, 2020
1 parent f87c5af commit 6c7526b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .codeclimate.yml
Expand Up @@ -16,9 +16,6 @@ plugins:
eslint:
enabled: true
channel: "eslint-6"
checks:
import/order:
enabled: false
fixme:
enabled: true
exclude_patterns:
Expand Down
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -142,7 +142,7 @@ module.exports = {
'import/first': 'error',
'import/no-namespace': 'error',
'import/extensions': 'error',
'import/order': ['error', { 'newlines-between': 'always', 'alphabetize': { 'order': 'asc', 'caseInsensitive': true } }],
'import/order': ['error', { 'newlines-between': 'always', 'alphabetize': { 'order': 'asc' } }],
'import/newline-after-import': ['error', { 'count': 2 }],
'import/no-unassigned-import': 'error',
'import/no-named-default': 'error',
Expand Down

0 comments on commit 6c7526b

Please sign in to comment.