Skip to content

Commit

Permalink
Codeclimate - don't use eslint plugin at all [ci skip]
Browse files Browse the repository at this point in the history
Screw it. It makes no sense unless correct versions of eslint and plugins can be ensured. Even if it doesn't fail - it can't follow some config options, jsdoc in particular.
  • Loading branch information
KillyMXI committed Oct 29, 2020
1 parent e5912e7 commit 9987864
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 @@ -13,9 +13,6 @@ checks:
config:
threshold: 55
plugins:
eslint:
enabled: true
channel: "eslint-6"
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',
'import/order': ['error', { 'newlines-between': 'always', 'alphabetize': { 'order': 'asc', 'caseInsensitive': true } }],
'import/newline-after-import': ['error', { 'count': 2 }],
'import/no-unassigned-import': 'error',
'import/no-named-default': 'error',
Expand Down

0 comments on commit 9987864

Please sign in to comment.