Skip to content

Commit

Permalink
feat: expression 간의 padding추가 룰을 제거한다 (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
kang-heewon authored Oct 18, 2024
1 parent c2e9eb7 commit a4f7e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils-eslint-config/src/rules/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const typescriptRules = {
'@typescript-eslint/padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: ['expression'], next: ['expression'] },
{ blankLine: 'always', prev: '*', next: 'block-like' },
{ blankLine: 'always', prev: ['if'], next: '*' },
{ blankLine: 'always', prev: ['const', 'let', 'var'], next: '*' },
{ blankLine: 'any', prev: ['const', 'let', 'var'], next: ['const', 'let', 'var'] },
Expand Down

0 comments on commit a4f7e0d

Please sign in to comment.