-
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
64 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
:root { | ||
[data-md-color-scheme="default"] { | ||
--md-primary-fg-color: rgb(219, 149, 80); | ||
--md-accent-fg-color: rgb(144, 180, 254); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{:indents {inner-0-form [[:inner 0]]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#_:clj-kondo/ignore | ||
(ns foo | ||
{:clj-kondo/config '{:linters {:unresolved-symbol {:level :off} | ||
:unused-bindings {:level :off}}}}) | ||
|
||
; Should indent like `(def ...` | ||
(foo/defbars body | ||
[:body {}]) | ||
|
||
; Should not indent like `(def ...` | ||
|
||
(foo/ddefbars body | ||
[:body {}]) | ||
|
||
|
||
; Should indent like `(let ...` | ||
(clojure.core/let [x :x] | ||
x) | ||
|
||
; Should not indent like `(let ...` | ||
(clojure.core-let [x :x] | ||
x) | ||
|
||
; Should indent using `[[:inner 0]]` | ||
; Assuming a custom `cljfmt.edn` is used and it has: | ||
; `{:indents {inner-0-form [[:inner 0]]}}` | ||
(foo/inner-0-form :a | ||
ss | ||
:foo) | ||
|
||
; Should not indent using `[[:inner 0]]` | ||
(foo-inner-0-form :a | ||
ss | ||
:foo) | ||
|
||
; Should indent like | ||
(deftype MyType [arg1 arg2] | ||
IMyProto | ||
(method1 [this] |(print "hello"))) |