When I edit any .coffee
file in my mvim
and try to save that file with any line longer than 80 symbols, I get such error.
file_name.coffee |18 error| Line exceeds maximum allowed length Length is 91, max is 80.
This is extremely annoying, especially taking into consideration that we have convention of max 100 symbols per line in our company and even code of other team members causes problems for me locally.
The only place where I can change this limit is in nodejs
module in file .../node_modules/coffeelint/lib/coffeelint.js
, which has such line:
max_line_length: {
value: 80,
-level: ERROR,
+level: IGNORE,
message: 'Line exceeds maximum allowed length'
},
But, of course, editing sources of nodejs
libraries is not a good option.
In my mvim
I use these dotfiles
- https://github.com/skwp/dotfiles
In my project directory I have .coffeelint.json
, but it does not work, however, it seems to contain needed and valid code for that (it works perfectly on TravisCI and on machines of other team members).
Questions:
- Is there any place where I can turn off
coffeelint
call when saving file? - Is there any place where I can configure my
coffelint
max allowed line length?
Update:
Putting properly named (.coffeelint.json
) config file into home directory helps, but is not proper solution in my case.