mirror of
https://github.com/penpot/penpot.git
synced 2025-07-30 02:47:22 +02:00
✨ Fix linter issues on frontend (part 1).
This commit is contained in:
parent
09314c8926
commit
e90185b553
53 changed files with 324 additions and 748 deletions
|
@ -6,15 +6,15 @@
|
|||
|
||||
(ns app.util.simple-math
|
||||
(:require
|
||||
[cljs.spec.alpha :as s]
|
||||
[clojure.string :refer [index-of]]
|
||||
[cuerdas.core :as str]
|
||||
[instaparse.core :as insta]
|
||||
[app.common.data :as d]
|
||||
[app.common.exceptions :as ex]))
|
||||
[app.common.data :as d]
|
||||
[app.common.exceptions :as ex]
|
||||
[cljs.spec.alpha :as s]
|
||||
[clojure.string :refer [index-of]]
|
||||
[cuerdas.core :as str]
|
||||
[instaparse.core :as insta]))
|
||||
|
||||
(def parser
|
||||
(insta/parser
|
||||
(insta/parser
|
||||
"opt-expr = '' | expr
|
||||
expr = term (<spaces> ('+'|'-') <spaces> expr)* |
|
||||
('+'|'-'|'*'|'/') <spaces> factor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue