Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
feat(eslint): disallow blank lines between imports
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Nov 23, 2018
1 parent e205be0 commit 91956ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ module.exports = {
'arrow-body-style': [2, 'as-needed'],
curly: [2, 'multi'],
'sort-imports': 2,
'padding-line-between-statements': [
2,
{ blankLine: 'never', prev: 'import', next: 'import' }
],
'sort-keys': 2,

// unicorn
Expand Down

0 comments on commit 91956ca

Please sign in to comment.