├── .gitignore ├── LICENSE ├── README.md ├── bin └── cljfmt ├── package.json ├── project.clj ├── src └── node_cljfmt │ └── main.cljs ├── test-file.clj └── test-options.edn /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/README.md -------------------------------------------------------------------------------- /bin/cljfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/bin/cljfmt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/package.json -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/project.clj -------------------------------------------------------------------------------- /src/node_cljfmt/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/src/node_cljfmt/main.cljs -------------------------------------------------------------------------------- /test-file.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoe/node-cljfmt/HEAD/test-file.clj -------------------------------------------------------------------------------- /test-options.edn: -------------------------------------------------------------------------------- 1 | {:remove-surrounding-whitespace? false 2 | :indents {div [[:inner 0]]}} 3 | 4 | --------------------------------------------------------------------------------