mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
11b70102c3
- Run jscpd, gitleaks, textlint against the entire workspace instead of running them over single files, one by one. - Implement a warning function for deprecated variables. - Deprecate the VALIDATE_JSCPD_ALL_CODEBASE variable. - Remove duplicate configuration files when they are the same as the ones we provide in TEMPLATES. - Add a missing tests for ansible-lint. - Move ANSIBLE_DIRECTORY configuration when running tests in buildFileList, where similar configs are. - Simplify ansible-lint test cases to include only what's necessary, and not an entire set of roles, playbooks, and inventory. - Write instructions about major upgrades in the upgrade guide.
34 lines
483 B
Clojure
34 lines
483 B
Clojure
(ns foo
|
|
(:require
|
|
[clojure.string :as str]))
|
|
|
|
(butlast [1 2 3])
|
|
|
|
(str/join "" "")
|
|
|
|
(defn foo-fn [x]
|
|
(let [y (fn [] (inc x))]
|
|
(y)))
|
|
|
|
(letfn
|
|
[(f [g] (h g))
|
|
(h [i] (f i))])
|
|
|
|
(defn foo [] 1)
|
|
(inc (foo))
|
|
|
|
(Thread/sleep 1000 1)
|
|
|
|
;; Here we switch to another namespace and require the previous:
|
|
(ns bar (:require [foo :as f]))
|
|
|
|
(f/foo-fn 1)
|
|
|
|
{:a 1 :b 2}
|
|
#{1 2}
|
|
{:a 1 :b 2}
|
|
|
|
(ns bar-test (:require [clojure.test :as t]))
|
|
|
|
(t/deftest my-tests
|
|
(t/is (odd? (inc 1))))
|