summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-12-07 19:15:33 +0000
committerGitHub <noreply@github.com>2017-12-07 19:15:33 +0000
commit7a71186d62d1964e191dc723d8b65ab7786e0063 (patch)
tree5fe52e583145a16e5a88fd93ba333636516352a3
parentc6fc9cdb7b31823cafc1e86dc4555a595abc9aee (diff)
parentfbc8ac95539b6b1672e824a2df0422fdeb32f5c6 (diff)
downloadale-7a71186d62d1964e191dc723d8b65ab7786e0063.zip
Merge pull request #1174 from eborden/eborden/add-brittany-for-haskell-formatting
Add brittany for Haskell formatting
-rw-r--r--README.md2
-rw-r--r--autoload/ale/fix/registry.vim5
-rw-r--r--autoload/ale/fixers/brittany.vim15
-rw-r--r--doc/ale-haskell.txt10
-rw-r--r--doc/ale.txt3
-rw-r--r--test/fixers/test_brittany_fixer_callback.vader23
6 files changed, 56 insertions, 2 deletions
diff --git a/README.md b/README.md
index 94640c5f..b978c160 100644
--- a/README.md
+++ b/README.md
@@ -105,7 +105,7 @@ formatting.
| GraphQL | [eslint](http://eslint.org/), [gqlint](https://github.com/happylinks/gqlint) |
| Haml | [haml-lint](https://github.com/brigade/haml-lint) |
| Handlebars | [ember-template-lint](https://github.com/rwjblue/ember-template-lint) |
-| Haskell | [ghc](https://www.haskell.org/ghc/), [stack-ghc](https://haskellstack.org/), [stack-build](https://haskellstack.org/) !!, [ghc-mod](https://github.com/DanielG/ghc-mod), [stack-ghc-mod](https://github.com/DanielG/ghc-mod), [hlint](https://hackage.haskell.org/package/hlint), [hdevtools](https://hackage.haskell.org/package/hdevtools), [hfmt](https://github.com/danstiner/hfmt) |
+| Haskell | [brittany](https://github.com/lspitzner/brittany), [ghc](https://www.haskell.org/ghc/), [stack-ghc](https://haskellstack.org/), [stack-build](https://haskellstack.org/) !!, [ghc-mod](https://github.com/DanielG/ghc-mod), [stack-ghc-mod](https://github.com/DanielG/ghc-mod), [hlint](https://hackage.haskell.org/package/hlint), [hdevtools](https://hackage.haskell.org/package/hdevtools), [hfmt](https://github.com/danstiner/hfmt) |
| HTML | [HTMLHint](http://htmlhint.com/), [proselint](http://proselint.com/), [tidy](http://www.html-tidy.org/), [write-good](https://github.com/btford/write-good) |
| Idris | [idris](http://www.idris-lang.org/) |
| Java | [checkstyle](http://checkstyle.sourceforge.net), [javac](http://www.oracle.com/technetwork/java/javase/downloads/index.html) |
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim
index 5c09e785..b4e18c47 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -139,6 +139,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['haskell'],
\ 'description': 'Fix Haskell files with hfmt.',
\ },
+\ 'brittany': {
+\ 'function': 'ale#fixers#brittany#Fix',
+\ 'suggested_filetypes': ['haskell'],
+\ 'description': 'Fix Haskell files with brittany.',
+\ },
\ 'refmt': {
\ 'function': 'ale#fixers#refmt#Fix',
\ 'suggested_filetypes': ['reason'],
diff --git a/autoload/ale/fixers/brittany.vim b/autoload/ale/fixers/brittany.vim
new file mode 100644
index 00000000..fed5eb8b
--- /dev/null
+++ b/autoload/ale/fixers/brittany.vim
@@ -0,0 +1,15 @@
+" Author: eborden <evan@evan-borden.com>
+" Description: Integration of brittany with ALE.
+
+call ale#Set('haskell_brittany_executable', 'brittany')
+
+function! ale#fixers#brittany#Fix(buffer) abort
+ let l:executable = ale#Var(a:buffer, 'haskell_brittany_executable')
+
+ return {
+ \ 'command': ale#Escape(l:executable)
+ \ . ' %t',
+ \ 'read_temporary_file': 1,
+ \}
+endfunction
+
diff --git a/doc/ale-haskell.txt b/doc/ale-haskell.txt
index 4a490efc..0ea40377 100644
--- a/doc/ale-haskell.txt
+++ b/doc/ale-haskell.txt
@@ -3,6 +3,16 @@ ALE Haskell Integration *ale-haskell-options*
===============================================================================
+brittany *ale-haskell-brittany*
+
+g:ale_haskell_brittany_executable *g:ale_haskell_brittany_executable*
+ *b:ale_haskell_brittany_executable*
+ Type: |String|
+ Default: `'brittany'`
+
+ This variable can be changed to use a different executable for brittany.
+
+===============================================================================
hdevtools *ale-haskell-hdevtools*
g:ale_haskell_hdevtools_executable *g:ale_haskell_hdevtools_executable*
diff --git a/doc/ale.txt b/doc/ale.txt
index 0ab72747..db725c08 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -80,6 +80,7 @@ CONTENTS *ale-contents*
handlebars............................|ale-handlebars-options|
ember-template-lint.................|ale-handlebars-embertemplatelint|
haskell...............................|ale-haskell-options|
+ brittany............................|ale-haskell-brittany|
hdevtools...........................|ale-haskell-hdevtools|
hfmt................................|ale-haskell-hfmt|
stack-build.........................|ale-haskell-stack-build|
@@ -303,7 +304,7 @@ Notes:
* GraphQL: `eslint`, `gqlint`
* Haml: `haml-lint`
* Handlebars: `ember-template-lint`
-* Haskell: `ghc`, `stack-ghc`, `stack-build`!!, `ghc-mod`, `stack-ghc-mod`, `hlint`, `hdevtools`, `hfmt`
+* Haskell: `brittany`, `ghc`, `stack-ghc`, `stack-build`!!, `ghc-mod`, `stack-ghc-mod`, `hlint`, `hdevtools`, `hfmt`
* HTML: `HTMLHint`, `proselint`, `tidy`, `write-good`
* Idris: `idris`
* Java: `checkstyle`, `javac`
diff --git a/test/fixers/test_brittany_fixer_callback.vader b/test/fixers/test_brittany_fixer_callback.vader
new file mode 100644
index 00000000..a0182b52
--- /dev/null
+++ b/test/fixers/test_brittany_fixer_callback.vader
@@ -0,0 +1,23 @@
+Before:
+ Save g:ale_haskell_brittany_executable
+
+ " Use an invalid global executable, so we don't match it.
+ let g:ale_haskell_brittany_executable = 'xxxinvalid'
+
+ call ale#test#SetDirectory('/testplugin/test/fixers')
+
+After:
+ Restore
+
+ call ale#test#RestoreDirectory()
+
+Execute(The brittany callback should return the correct default values):
+ call ale#test#SetFilename('../haskell_files/testfile.hs')
+
+ AssertEqual
+ \ {
+ \ 'read_temporary_file': 1,
+ \ 'command': ale#Escape('xxxinvalid')
+ \ . ' %t',
+ \ },
+ \ ale#fixers#brittany#Fix(bufnr(''))