lkytal / coffeelinter

Coffee Lint extension for VS Code
GNU Affero General Public License v3.0
7 stars 9 forks source link

coffeelint.json is respected in subfolders only after explicit saving #13

Open phil294 opened 3 years ago

phil294 commented 3 years ago

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.

Workaround: ln -s web/coffeelint.json coffeelint.json.

Thanks!