Mitar
Mitar
So if it is OK for me to add this rule, then I can add it. There was no clear agreement on that.
I am plan to use it. :-)
I am not sure what you are talking now here. Require or forbid what? An extra empty line at the end? This sounds strange that one would require extra empty...
This rule here is to forbid: `foobar\n\n` (and `foobar\n\n\n`, and so on).
`foobar\n` is a 1 line file, BTW. If you think it the terms of `eol_last`.
Yea, so I am planing to do `no-multiple-empty-lines` as #430. But this here is different. Sorry to be nitpicky, but that is probably normal for people who are using lints....
I think we should just make three rules. eol at the end, number of empty lines at the end, and number of empty lines in between the code. I do...
Maybe I am just used to [PEP8](https://www.python.org/dev/peps/pep-0008/). :-) > Don't use spaces around the = sign when used to indicate a keyword argument or a default parameter value. [And about...
@mnquintana: I just don't know how to implement this. At the lexer level it is too complicated (you do not know what `=` means), at the AST level you do...
Yea, I have them in the [test case](https://github.com/clutchski/coffeelint/pull/438/files#diff-c373b28a821221132ae1c72251394f01R212). :-)