summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--ale_linters/nasm/nasm.vim50
-rw-r--r--autoload/ale/fix/registry.vim5
-rw-r--r--autoload/ale/fixers/xo.vim23
-rw-r--r--doc/ale-nasm.txt26
-rw-r--r--doc/ale.txt3
-rw-r--r--test/command_callback/test_nasm_nasm_command_callbacks.vader52
-rw-r--r--test/handler/test_nasm_handler.vader30
8 files changed, 194 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1183ad9a..0c3aba77 100644
--- a/README.md
+++ b/README.md
@@ -138,6 +138,7 @@ formatting.
| Markdown | [alex](https://github.com/wooorm/alex) !!, [markdownlint](https://github.com/DavidAnson/markdownlint) !!, [mdl](https://github.com/mivok/markdownlint), [prettier](https://github.com/prettier/prettier), [proselint](http://proselint.com/), [redpen](http://redpen.cc/), [remark-lint](https://github.com/wooorm/remark-lint) !!, [textlint](https://textlint.github.io/), [vale](https://github.com/ValeLint/vale), [write-good](https://github.com/btford/write-good) |
| MATLAB | [mlint](https://www.mathworks.com/help/matlab/ref/mlint.html) |
| Mercury | [mmc](http://mercurylang.org) !! |
+| NASM | [nasm](https://www.nasm.us/) !! |
| Nim | [nim check](https://nim-lang.org/docs/nimc.html) !! |
| nix | [nix-instantiate](http://nixos.org/nix/manual/#sec-nix-instantiate) |
| nroff | [alex](https://github.com/wooorm/alex) !!, [proselint](http://proselint.com/), [write-good](https://github.com/btford/write-good)|
@@ -515,6 +516,8 @@ There are 3 global options that allow customizing the echoed message.
- `g:ale_echo_msg_format` where:
* `%s` is the error message itself
+ * `%...code...%` is an optional error code, and most characters can be
+ written between the `%` characters.
* `%linter%` is the linter name
* `%severity` is the severity type
- `g:ale_echo_msg_error_str` is the string used for error severity.
@@ -532,6 +535,8 @@ Will give you:
![Echoed message](img/echo.png)
+See `:help g:ale_echo_msg_format` for more information.
+
<a name="faq-autocmd"></a>
### 5.viii. How can I execute some code when ALE starts or stops linting?
diff --git a/ale_linters/nasm/nasm.vim b/ale_linters/nasm/nasm.vim
new file mode 100644
index 00000000..f4b2ca4b
--- /dev/null
+++ b/ale_linters/nasm/nasm.vim
@@ -0,0 +1,50 @@
+" Author: Oyvind Ingvaldsen <oyvind.ingvaldsen@gmail.com>
+" Description: NASM linter for asmsyntax nasm.
+
+call ale#Set('nasm_nasm_executable', 'nasm')
+call ale#Set('nasm_nasm_options', '')
+
+function! ale_linters#nasm#nasm#GetExecutable(buffer) abort
+ return ale#Var(a:buffer, 'nasm_nasm_executable')
+endfunction
+
+function! ale_linters#nasm#nasm#GetOptions(buffer) abort
+ return ale#Var(a:buffer, 'nasm_nasm_options')
+endfunction
+
+function! ale_linters#nasm#nasm#GetCommand(buffer) abort
+ " Note that NASM require a trailing slash to the -I option.
+ let l:executable = ale#Escape(ale_linters#nasm#nasm#GetExecutable(a:buffer))
+ let l:separator = has('win32') ? '\' : '/'
+ let l:path = ale#Escape(fnamemodify(bufname(a:buffer), ':p:h') . l:separator)
+ let l:options = ale_linters#nasm#nasm#GetOptions(a:buffer)
+
+ return l:executable
+ \ . ' -X gnu'
+ \ . ' -I ' . l:path
+ \ . ' ' . l:options
+ \ . ' %s'
+endfunction
+
+function! ale_linters#nasm#nasm#Handle(buffer, lines) abort
+ " Note that we treat 'fatal' as errors.
+ let l:pattern = '^.\+:\(\d\+\): \([^:]\+\): \(.\+\)$'
+ let l:output = []
+ for l:match in ale#util#GetMatches(a:lines, l:pattern)
+ call add(l:output, {
+ \ 'lnum': l:match[1] + 0,
+ \ 'type': l:match[2] =~? 'error\|fatal' ? 'E' : 'W',
+ \ 'text': l:match[3],
+ \})
+ endfor
+ return l:output
+endfunction
+
+call ale#linter#Define('nasm', {
+\ 'name': 'nasm',
+\ 'executable': 'nasm',
+\ 'output_stream': 'stderr',
+\ 'lint_file': 1,
+\ 'command_callback': 'ale_linters#nasm#nasm#GetCommand',
+\ 'callback': 'ale_linters#nasm#nasm#Handle',
+\})
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim
index 7e45e6ad..7b5fdb8e 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -190,6 +190,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['perl'],
\ 'description': 'Fix Perl files with perltidy.',
\ },
+\ 'xo': {
+\ 'function': 'ale#fixers#xo#Fix',
+\ 'suggested_filetypes': ['javascript'],
+\ 'description': 'Fix JavaScript files using xo --fix.',
+\ },
\}
" Reset the function registry to the default entries.
diff --git a/autoload/ale/fixers/xo.vim b/autoload/ale/fixers/xo.vim
new file mode 100644
index 00000000..882350be
--- /dev/null
+++ b/autoload/ale/fixers/xo.vim
@@ -0,0 +1,23 @@
+" Author: Albert Marquez - https://github.com/a-marquez
+" Description: Fixing files with XO.
+
+call ale#Set('javascript_xo_executable', 'xo')
+call ale#Set('javascript_xo_use_global', get(g:, 'ale_use_global_executables', 0))
+call ale#Set('javascript_xo_options', '')
+
+function! ale#fixers#xo#GetExecutable(buffer) abort
+ return ale#node#FindExecutable(a:buffer, 'javascript_xo', [
+ \ 'node_modules/xo/cli.js',
+ \ 'node_modules/.bin/xo',
+ \])
+endfunction
+
+function! ale#fixers#xo#Fix(buffer) abort
+ let l:executable = ale#fixers#xo#GetExecutable(a:buffer)
+
+ return {
+ \ 'command': ale#node#Executable(a:buffer, l:executable)
+ \ . ' --fix %t',
+ \ 'read_temporary_file': 1,
+ \}
+endfunction
diff --git a/doc/ale-nasm.txt b/doc/ale-nasm.txt
new file mode 100644
index 00000000..16c024a1
--- /dev/null
+++ b/doc/ale-nasm.txt
@@ -0,0 +1,26 @@
+===============================================================================
+ALE NASM Integration *ale-nasm-options*
+
+
+===============================================================================
+nasm *ale-nasm-nasm*
+
+g:ale_nasm_nasm_executable *g:ale_nasm_nasm_executable*
+ *b:ale_nasm_nasm_executable*
+
+ Type: |String|
+ Default `'nasm'`
+
+ This variable can be changed to use different executable for NASM.
+
+
+g:ale_nasm_nasm_options *g:ale_nasm_nasm_options*
+ *b:ale_nasm_nasm_options*
+ Type: |String|
+ Default: `''`
+
+ This variable can be set to pass additional options to NASM.
+
+
+===============================================================================
+ vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
diff --git a/doc/ale.txt b/doc/ale.txt
index 4a926386..90686444 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -145,6 +145,8 @@ CONTENTS *ale-contents*
write-good..........................|ale-markdown-write-good|
mercury...............................|ale-mercury-options|
mmc.................................|ale-mercury-mmc|
+ nasm..................................|ale-nasm-options|
+ nasm................................|ale-nasm-nasm|
nroff.................................|ale-nroff-options|
write-good..........................|ale-nroff-write-good|
objc..................................|ale-objc-options|
@@ -360,6 +362,7 @@ Notes:
* Markdown: `alex`!!, `markdownlint`!!, `mdl`, `prettier`, `proselint`, `redpen`, `remark-lint`, `textlint`, `vale`, `write-good`
* MATLAB: `mlint`
* Mercury: `mmc`!!
+* NASM: `nasm`!!
* Nim: `nim check`!!
* nix: `nix-instantiate`
* nroff: `alex`!!, `proselint`, `write-good`
diff --git a/test/command_callback/test_nasm_nasm_command_callbacks.vader b/test/command_callback/test_nasm_nasm_command_callbacks.vader
new file mode 100644
index 00000000..5053e536
--- /dev/null
+++ b/test/command_callback/test_nasm_nasm_command_callbacks.vader
@@ -0,0 +1,52 @@
+Before:
+ Save g:ale_nasm_nasm_executable
+ Save g:ale_nasm_nasm_options
+
+ unlet! g:ale_nasm_nasm_executable
+ unlet! b:ale_nasm_nasm_executable
+ unlet! g:ale_nasm_nasm_options
+ unlet! b:ale_nasm_nasm_options
+
+ runtime ale_linters/nasm/nasm.vim
+
+ let b:command_tail =
+ \ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' %s'
+ let b:command_tail_opt =
+ \ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' -w+orphan-labels %s'
+
+After:
+ Restore
+ unlet! b:command_tail
+ unlet! b:command_tail_opt
+ unlet! b:ale_nasm_nasm_executable
+ unlet! b:ale_nasm_nasm_options
+ call ale#linter#Reset()
+
+Execute(The executable should be configurable):
+ AssertEqual 'nasm', ale_linters#nasm#nasm#GetExecutable(bufnr(''))
+
+ let b:ale_nasm_nasm_executable = '/opt/nasm/nasm'
+
+ AssertEqual '/opt/nasm/nasm', ale_linters#nasm#nasm#GetExecutable(bufnr(''))
+
+Execute(The executable should be used in the command):
+ AssertEqual
+ \ ale#Escape('nasm') . b:command_tail,
+ \ ale_linters#nasm#nasm#GetCommand(bufnr(''))
+
+ let b:ale_nasm_nasm_executable = '~/nasm'
+
+ AssertEqual
+ \ ale#Escape('~/nasm') . b:command_tail,
+ \ ale_linters#nasm#nasm#GetCommand(bufnr(''))
+
+Execute(The options should be configurable):
+ AssertEqual '', ale_linters#nasm#nasm#GetOptions(bufnr(''))
+ let b:ale_nasm_nasm_options = '-w-macro-params'
+ AssertEqual '-w-macro-params', ale_linters#nasm#nasm#GetOptions(bufnr(''))
+
+Execute(The options should be used in command):
+ let b:ale_nasm_nasm_options = '-w+orphan-labels'
+ AssertEqual
+ \ ale#Escape('nasm') . b:command_tail_opt,
+ \ ale_linters#nasm#nasm#GetCommand(bufnr(''))
diff --git a/test/handler/test_nasm_handler.vader b/test/handler/test_nasm_handler.vader
new file mode 100644
index 00000000..9c7d9650
--- /dev/null
+++ b/test/handler/test_nasm_handler.vader
@@ -0,0 +1,30 @@
+Before:
+ runtime ale_linters/nasm/nasm.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The nasm handler should parse GCC style output from nasm correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 2,
+ \ 'text': "label alone on a line without a colon might be in error",
+ \ 'type': 'W',
+ \ },
+ \ {
+ \ 'lnum': 4,
+ \ 'text': "invalid combination of opcode and operands",
+ \ 'type': 'E',
+ \ },
+ \ {
+ \ 'lnum': 7,
+ \ 'text': "unable to open include file `bar.asm'",
+ \ 'type': 'E',
+ \ },
+ \ ],
+ \ ale_linters#nasm#nasm#Handle(bufnr(''), [
+ \ "tmp.asm:2: warning: label alone on a line without a colon might be in error",
+ \ "tmp.asm:4: error: invalid combination of opcode and operands",
+ \ "tmp.asm:7: fatal: unable to open include file `bar.asm'"
+ \ ])