0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-13 15:31:26 -05:00

📎 Fix linter issues related to clj-kondo update

This commit is contained in:
Andrey Antukh 2022-02-25 11:54:16 +01:00
parent d5b163f04d
commit 9f2d87d7d7
2 changed files with 2 additions and 1 deletions

View file

@ -6,7 +6,7 @@
(ns app.common.data
"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
(:require-macros [app.common.data]))
(:require

View file

@ -6,6 +6,7 @@
(ns app.common.math
"A collection of math utils."
(:refer-clojure :exclude [abs])
#?(:cljs
(:require [goog.math :as math])))