You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry not sure where to ask this question so I post it here. Does quick-lint-js lint json files as well? And to that extend is there a list of file types which quick-lint-js is capable of linting? i.e. *.js, *.ts, *.jsx, *.json, etc. It could be a good page to have documented somewhere if it isn't already... sorry had trouble finding it if there is something on this.
thanks for any help.
The text was updated successfully, but these errors were encountered:
No. quick-lint-js does report issues in quick-lint-js.config files (which are JSON), but quick-lint-js does not have general-purpose JSON syntax checking. i.e. *.js, *.ts, *.jsx, *.json, etc.
And to that extend is there a list of file types which quick-lint-js is capable of linting?
Ah thank you. I was looking at the website for something that said "Language Support" or "Supported Language" I had looked through the CLI docs but totally missed the languageid section. And to my own ignorance I didn't think to look in LSP. I had thought maybe the languages would be listed on the home page with the nice comparison chart there as well. But most of this was due to my quick glassing over things.
O also I made a script in my package json to run quick-lint-js over all .ts and .js files and excluding some directories:
"find . -type d \( -path ./node_modules -o -path ./coverage -o -path ./dist \) -prune -o -type f \( -iname \.js -o -iname \.ts \) -print | xargs /usr/bin/quick-lint-js | xargs"
Not sure if there is a better way to do this... the ending xargs is to prevent the package.json script from showing errors when it actually succeeded. And I'm excluding looking through my node_modules, coverage and dist directories for files to lint.
sorry not sure where to ask this question so I post it here. Does quick-lint-js lint json files as well? And to that extend is there a list of file types which quick-lint-js is capable of linting? i.e. *.js, *.ts, *.jsx, *.json, etc. It could be a good page to have documented somewhere if it isn't already... sorry had trouble finding it if there is something on this.
thanks for any help.
The text was updated successfully, but these errors were encountered: