Skip to content

Commit

Permalink
Merge pull request #124 from metametadata/master
Browse files Browse the repository at this point in the history
Suppress ClojureScript analyzer warnings
  • Loading branch information
weavejester committed May 7, 2016
2 parents ed6617e + bbdbadc commit 5de3303
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codox/src/codox/reader/clojurescript.clj
Expand Up @@ -64,7 +64,8 @@
(defn- analyze-file [file]
(let [state (ana/empty-state)]
(binding [an/*analyze-deps* false]
(ana/analyze-file state file {}))
(ana/no-warn
(ana/analyze-file state file {})))
state))

(defn- read-file [path file]
Expand Down

0 comments on commit 5de3303

Please sign in to comment.