sindresorhus / atom-editorconfig

Helps developers maintain consistent coding styles between different editors
https://atom.io/packages/editorconfig
MIT License
812 stars 80 forks source link

Unrecognized declaration name `max_line_length` #244

Closed AlexWayfer closed 4 years ago

AlexWayfer commented 4 years ago

image

image

Involved .editorconfig-files

root = true

[*]
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120

[*.yml]
indent_style = space

Directory structure

Doesn't matter.

Installed packages

editorconfig@2.6.0
Alhadis commented 4 years ago

Good catch. Seems like #236 overlooked EditorConfig settings that aren't listed as mandatory (or in their words, "supported by a limited number of editors", of which Atom is one of them). So far there's just max_line_length; should be an easy fix. 👍

Alhadis commented 4 years ago

Sorry about the wait. I had to investigate why the linter specs weren't running (which required a little research).

You'll see this fix in the next package release. 👍

AlexWayfer commented 4 years ago

Sorry about the wait.

No problem, thank you very much!