Meaning that when I reload vscode, with my workspace in the following structure:
/
api/
web/
coffeelint.json
sourcefile.coffee
then this exctension will apply the standard coffee linting rules to sourcefile.coffee when I open it. This changes once /web/coffeelint.json is saved, which needs to be done after every restart.
Meaning that when I reload vscode, with my workspace in the following structure:
then this exctension will apply the standard coffee linting rules to
sourcefile.coffee
when I open it. This changes once/web/coffeelint.json
is saved, which needs to be done after every restart.Workaround:
ln -s web/coffeelint.json coffeelint.json
.Thanks!