We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Heya 👋
If you have a namespace with a string require, which is common in ClojureScript projects, the whole file will be skipped.
For instance, running kibit over this file:
(ns app.core (:require ["some-lib" :as some-lib])) (not (empty? []))
Prints the following message:
Check failed -- skipping rest of file (./src/app/core.cljs:null:null) Unparsable namespace form
It's possible to work around this by removing the require, running kibit, and then adding it back.
Would be nicer if the file was still checked, but that specific require ignored.
The text was updated successfully, but these errors were encountered:
fix: Kibit cannot parse ns with string requires
16bb192
fixes: clj-commons#242
fix: Kibit cannot parse ns with string requires (UTs)
c2f003f
Successfully merging a pull request may close this issue.
Heya 👋
If you have a namespace with a string require, which is common in ClojureScript projects, the whole file will be skipped.
For instance, running kibit over this file:
Prints the following message:
It's possible to work around this by removing the require, running kibit, and then adding it back.
Would be nicer if the file was still checked, but that specific require ignored.
The text was updated successfully, but these errors were encountered: