We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What version of this package are you using? ^16.0.2
What problem do you want to solve? Ugly blank lines at the beginning of files
What do you think is the correct solution to this problem? Use the maxBOF setting for the no-multiple-empty-lines rule:
maxBOF
no-multiple-empty-lines
- "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }], + "no-multiple-empty-lines": ["error", { "max": 1, "maxBOF": 0, "maxEOF": 0 }],
Are you willing to submit a pull request to implement this change? Yes
The text was updated successfully, but these errors were encountered:
eslint-plugin-editorconfig
Add maxBOF setting to no-multiple-empty-lines
9673e0b
Fixes #182
Successfully merging a pull request may close this issue.
What version of this package are you using?
^16.0.2
What problem do you want to solve?
Ugly blank lines at the beginning of files
What do you think is the correct solution to this problem?
Use the
maxBOF
setting for theno-multiple-empty-lines
rule:Are you willing to submit a pull request to implement this change?
Yes
The text was updated successfully, but these errors were encountered: