sindresorhus / editorconfig-sublime

Sublime Text plugin for EditorConfig - Helps developers maintain consistent coding styles between different editors
MIT License
1.77k stars 108 forks source link

Ignore invalid property values #3

Closed treyhunner closed 11 years ago

treyhunner commented 11 years ago

This change is in accordance with the suggestion on the Plugin How To that invalid property values should be ignored.

Among other features, this allows for code bases with quarantined messy file directories to be left alone when no sane EditorConfig value can be specified and the text editor should be left to figure out what's best. For example:

[*.js]
indent_style = tab
end_of_line = lf

[messy_libraries_we_use/**.js]
indent_style = N/A
end_of_line = N/A
sindresorhus commented 11 years ago

Thanks! :)

Been meaning to do that...

I'm going to implement the new properties today. Any eta on when the next release is ready?

treyhunner commented 11 years ago

I just sent an email out to the mailing list about that. The EditorConfig core libraries are tested and appear stable and working (adding core library properties is very easy).

I'm hoping to release the new core libraries within the next 2 days and update the website immediately afterward.

sindresorhus commented 11 years ago

Ok, great.