-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Fix/additional coding style #279
Conversation
Codecov Report
@@ Coverage Diff @@
## master #279 +/- ##
=======================================
Coverage 88.85% 88.85%
=======================================
Files 78 78
Lines 6512 6512
Branches 458 458
=======================================
Hits 5786 5786
Misses 268 268
Partials 458 458
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR looks good to me.
In addition, according to Clojure Style Guide, I'd prefer the warn of Shadowed var. Cljam uses clojure.core vars as the name of fileds, and it's not easy to rename all fields that are used. So, I recommend to use :refer-clojure :exclude [VAR]
, and clojure.core/VAR
if VAR are used as both user-defined vars and core vars in the same file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for addressing the coding conventions. Your efforts are greatly appreciated 👍
I think the changes look good, except for the point @r6eve made.
Further modifications to :shadowed-var
and :missing-docstring
would be nice. Commits for these may be included in this pull request, or they may be established separately.
I will fix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got it. Thank you for this and another PR.
This PR adds clj-kondo's default off linter to clj-lint-action and fixes the warned code.
#273