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

Commit

Permalink
feat: remove padding rules
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Jul 18, 2018
1 parent 6304f86 commit 3ddb8a6
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,6 @@ module.exports = {
'prefer-const': 2,
'arrow-body-style': [2, 'as-needed'],
curly: [2, 'multi'],
'padding-line-between-statements': [
2,
{ blankLine: 'never', prev: '*', next: '*' }, // Avoid unnecessary blank lines
{ blankLine: 'always', prev: '*', next: 'block-like' }, // Blank lines before blocks
{ blankLine: 'always', prev: 'block-like', next: '*' }, // Blank lines after blocks
{ blankLine: 'never', prev: 'const', next: '*' }, // Never have blank lines after const statements
{ blankLine: 'always', prev: '*', next: 'return' }, // Blank lines before return statements
{ blankLine: 'any', prev: 'cjs-import', next: '*' }, // Ignore commonjs imports
{ blankLine: 'any', prev: 'import', next: '*' } // Ignore ES6 imports
],

// unicorn
'unicorn/no-fn-reference-in-iterator': 0, // Allows [].map(func)
Expand Down

0 comments on commit 3ddb8a6

Please sign in to comment.