We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c01a10 commit 1764d53Copy full SHA for 1764d53
packages/eslint-config-airbnb-base/rules/style.js
@@ -184,12 +184,9 @@ module.exports = {
184
// enforces empty lines around comments
185
'lines-around-comment': 'off',
186
187
- // require or disallow newlines around directives
188
- // https://eslint.org/docs/rules/lines-around-directive
189
- 'lines-around-directive': ['error', {
190
- before: 'always',
191
- after: 'always',
192
- }],
+// Require or disallow padding lines between statements
+ // https://eslint.org/docs/rules/padding-line-between-statements
+ 'padding-line-between-statements': 'off',
193
194
// Require or disallow logical assignment logical operator shorthand
195
// https://eslint.org/docs/latest/rules/logical-assignment-operators
0 commit comments