Skip to content
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

add clj-kondo linting #338

Merged
merged 5 commits into from Aug 22, 2019
Merged

add clj-kondo linting #338

merged 5 commits into from Aug 22, 2019

Conversation

lread
Copy link
Member

@lread lread commented Jul 29, 2019

Overview

Closes #332

  • Added clj-kondo with appropriate config to lint cljdoc sources.
  • For this first run, found mostly unused namespaces and bindings.
  • Corrected or suppressed all errors/warnings produced by clj-kondo.
  • Now failing build on circleci should any new errors/warnings crop up.

Run the new script/lint.sh to lint cljdoc sources.

Please continue reading.

Issues

The following should be reviewed before this commit is merged.

unlogged exceptions

We have a couple of cases of caught exceptions not being logged. They should be
reviewed and a comment added if this is intentional.

See:

empty code

An unused function with a big comment and an empty body had me puzzled. Was
I right to delete it?

See:

oversights?

The comment above an unused binding made me think there might be a
programming error - as such I left the code in and temporarily suppressed
the linter warning via an underscore prefix.

See:

Copy link
Member

@martinklepsch martinklepsch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have a couple of cases of caught exceptions not being logged. They should be reviewed and a comment added if this is intentional.

We could log these but also it probably doesn't matter much. Feel free to proceed with whatever you think is best 👍

Merge at will 🚀

src/cljdoc/doc_tree.clj Outdated Show resolved Hide resolved
@lread
Copy link
Member Author

lread commented Aug 22, 2019

Thanks for reviewing @martinklepsch, mucho appreciated!

Overview
--------
Closes cljdoc#332

- Added clj-kondo with appropriate config to lint cljdoc sources.
- For this first run, found mostly unused namespaces and bindings.
- Corrected or suppressed all errors/warnings produced by clj-kondo.
- Now failing build on circleci should any new errors/warnings crop up.

Run the new `script/lint.sh` to lint cljdoc sources.

Please continue reading.

Unused destructured keys
------------------------
One pattern in cljdoc is the employment of unused destructured keys as means
of documenting what is expected for a function. For example, given:

`(defn [{:keys [a b c d] :as e}])`

cljdoc might not use all of `a` `b` `c` `d` and `e` in the function body.

I've deferred the decision of whether or not cljdoc team wants to continue with
this practice via script/lint.sh which suppresses this specific case of unused
binding.

Issues
------
The following should be reviewed before this commit is merged.

**unlogged exceptions**

We have a couple of cases of caught exceptions not being logged. They should be
reviewed and a comment added if this is intentional.

See:
- [server/api.clj](https://github.com/cljdoc/cljdoc/blob/d54cb58b20d2b4cb1e7c714b3637aa8b89956ce0/src/cljdoc/server/api.clj#L38)
- [server/pedestal.clj](https://github.com/cljdoc/cljdoc/blob/d54cb58b20d2b4cb1e7c714b3637aa8b89956ce0/src/cljdoc/server/pedestal.clj#L295)

**empty code**

An unused function with a big comment and an empty body had me puzzled. Was
I right to delete it?

See:
- [git_repo.clj](https://github.com/cljdoc/cljdoc/blob/d54cb58b20d2b4cb1e7c714b3637aa8b89956ce0/src/cljdoc/git_repo.clj#L219)

**oversights?**

The comment above an unused binding made me think there might be a
programming error - as such I left the code in and temporarily suppressed
the linter warning via an underscore prefix.

See:
- [doc_tree.clj](https://github.com/cljdoc/cljdoc/blob/d54cb58b20d2b4cb1e7c714b3637aa8b89956ce0/src/cljdoc/doc_tree.clj#L89)
incorporate feedback from review with @borkdude.
- don't need to build cache then lint, can build cache and lint
- include test paths when building cache
- decided to listen to :not-empty? warning after all
Upgrade to new version of clj-kondo that allows unused unstructured keys
in function defs. This greatly simplifies script/lint.sh which was doing
work to suppress these warnings.
address doc_tree.clj issue raised by clj-kondo, now slurping the way
we want to.
now logging, rather than swallowing, exceptions
@lread lread merged commit 9f9bbc2 into cljdoc:master Aug 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Consider using clj-kondo
2 participants