Skip to content

Commit

Permalink
don't force empty lines between single line class members
Browse files Browse the repository at this point in the history
  • Loading branch information
KamiKillertO authored and GreatWizard committed Aug 4, 2020
1 parent 97c5e64 commit b6ad8c7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ module.exports = {
"prefer-destructuring": "error",
"prefer-spread": "error",
"prefer-template": "error",
semi: ["error", "never"]
semi: ["error", "never"],
"lines-between-class-members": [
"error",
"always",
{
exceptAfterSingleLine: true
}
]
}
}

0 comments on commit b6ad8c7

Please sign in to comment.