venantius / vim-eastwood

A Vim plugin for Clojure's Eastwood linter
84 stars 7 forks source link

Support for `exclude-linters` options #5

Open venantius opened 9 years ago

venantius commented 9 years ago

Right now you can configure eastwood to exclude certain linters; the plugin avoids doing that by using the REPL. It would be nice to have vim-eastwood pick up the lint exclusions.

venantius commented 9 years ago

A naive implementation of this would walk the directory structure up from the file being edited until it found a project.clj and slurped that, along with ~/.lein/profiles.clj and then did some merging. This could get hairy quite quickly.

venantius commented 9 years ago

I've created a PR for this on the Eastwood project page: https://github.com/jonase/eastwood/pull/156