Skip to content

Commit

Permalink
Switch relevant links from jonase/kibit to clj-commons/kibit
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed May 9, 2024
1 parent 229f9bd commit 0f087f0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ instead of:
Add the following to your aliases

```clojure
:kibit {:extra-deps {jonase/kibit {:mvn/version "0.X.Y"}}
:kibit {:extra-deps {clj-commons/kibit {:mvn/version "0.X.Y"}}
:exec-fn kibit.driver/exec
:exec-args {:paths ["."]}}
```
Expand Down Expand Up @@ -222,16 +222,16 @@ some false positives.
## Contributing

It is very easy to write new patterns for `kibit`. Take a look at
[`control-structures.clj`](https://github.com/jonase/kibit/blob/master/kibit/src/kibit/rules/control_structures.clj)
[`control-structures.clj`](https://github.com/clj-commons/kibit/blob/master/kibit/src/kibit/rules/control_structures.clj)
to see how new patterns are created. If you know of a recurring
pattern of code that can be simplified, please consider sending me a
pull request.

Bugs can be reported using the GitHub [issue tracker](https://github.com/jonase/kibit/issues/).
Bugs can be reported using the GitHub [issue tracker](https://github.com/clj-commons/kibit/issues/).

## Contributors

Thanks to all who have [contributed](https://github.com/jonase/kibit/graphs/contributors) to kibit!
Thanks to all who have [contributed](https://github.com/clj-commons/kibit/graphs/contributors) to kibit!

## TODO

Expand Down
2 changes: 1 addition & 1 deletion lein-kibit/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lein-kibit

See [kibit](https://github.com/jonase/kibit) for instructions on how
See [kibit](https://github.com/clj-commons/kibit) for instructions on how
to install and use this plugin.

## Development
Expand Down
4 changes: 2 additions & 2 deletions lein-kibit/project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject lein-kibit (clojure.string/trim-newline (slurp "../resources/jonase/kibit/VERSION"))
:description "kibit lein plugin"
:url "https://github.com/jonase/kibit"
:url "https://github.com/clj-commons/kibit"
:resource-paths ["resources"]
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/tools.namespace "1.4.4"]
:dependencies [[org.clojure/tools.namespace "1.5.0"]
[jonase/kibit ~(clojure.string/trim-newline (slurp "../resources/jonase/kibit/VERSION"))]]
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
Expand Down
2 changes: 1 addition & 1 deletion src/kibit/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[clojure.core.logic :as logic]))

;; ### Important notes
;; Feel free to contribute rules to [kibit's github repo](https://github.com/jonase/kibit)
;; Feel free to contribute rules to [kibit's github repo](https://github.com/clj-commons/kibit)

;; Building an alternative form
;; ----------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/kibit/rules.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
;;
;; These rules are used in the unification process to generate suggested
;; code alternatives. For more information see:
;; [core](#jonase.kibit.core) namespace
;; [core](#kibit.core) namespace


;; A map of the individual rule sets, keyed by rule group
Expand Down

0 comments on commit 0f087f0

Please sign in to comment.