mirror of
https://github.com/penpot/penpot.git
synced 2025-05-29 15:26:12 +02:00
📎 Fix linter issues on staging branch
This commit is contained in:
parent
f64b1d3651
commit
1bad233e2f
3 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
(defmethod ig/init-key ::handler
|
(defmethod ig/init-key ::handler
|
||||||
[_ cfg]
|
[_ cfg]
|
||||||
(fn [request respond raise]
|
(fn [request respond _]
|
||||||
(try
|
(try
|
||||||
(let [body (parse-json (slurp (:body request)))
|
(let [body (parse-json (slurp (:body request)))
|
||||||
mtype (get body "Type")]
|
mtype (get body "Type")]
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
(ns app.common.data
|
(ns app.common.data
|
||||||
"Data manipulation and query helper functions."
|
"Data manipulation and query helper functions."
|
||||||
(:refer-clojure :exclude [read-string hash-map merge name parse-double group-by])
|
(:refer-clojure :exclude [read-string hash-map merge name parse-double group-by iteration])
|
||||||
#?(:cljs
|
#?(:cljs
|
||||||
(:require-macros [app.common.data]))
|
(:require-macros [app.common.data]))
|
||||||
(:require
|
(:require
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
(ns app.common.math
|
(ns app.common.math
|
||||||
"A collection of math utils."
|
"A collection of math utils."
|
||||||
|
(:refer-clojure :exclude [abs])
|
||||||
#?(:cljs
|
#?(:cljs
|
||||||
(:require [goog.math :as math])))
|
(:require [goog.math :as math])))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue