chtenb
chtenb
About the logic in eslint, there is a PR in the making that aims let eslint do all the work of find its config files. You might want to look...
If you look at the current code for eslint integration you can see it's already horrific. Imagine what any additional magic will do to it :) I think it would...
I'm not sure, there could be
That sounds acceptable
Agreed, this should be fixed
I agree that the case where eslint is in the PATH could be added.
Could this be due to a difference in versions? ``` $ css-beautify --help [email protected] ``` Possibly related: https://github.com/Chiel92/vim-autoformat/pull/39
The function that checks for that file can be found in defaults.vim: ``` vim function! g:ClangFormatConfigFileExists() return len(findfile(".clang-format", expand("%:p:h").";")) || len(findfile("_clang-format", expand("%:p:h").";")) endfunction ``` You could fiddle around with this...
@mjedmonds can you confirm?
The function that find the clangformat file can be found in defaults.vim line 76. You can probably fix your issue by tweaking that function. If you find a fix without...