Age | Commit message (Collapse) | Author |
|
Consider rubocop fatal errors as ALE errors, and rubocop style warnings
as ALE warnings.
|
|
|
|
the Handler function with tests
|
|
- Use `cargo check` instead of `cargo build` when
`g:ale_rust_cargo_use_check` is truish.
- Use `--frozen` to avoid locking the project.
|
|
|
|
|
|
* Fix problems with nim check
- Multi file errors are not shown in the same buffer
- Fixes parsing of error type that contain ':'
* Remove redundant fnameescape
|
|
* Allow modifying the location of the tsling executable
* Allow definition of config file path
* fnameescape configuration file
|
|
|
|
* add slim-lint
* add slim readme entry
* add slim entry to doc
* add slimlint vader test
|
|
Fix pattern of output for coffeelint
|
|
|
|
Write erlc output files to the temporary directory
|
|
Also, "manage" this filename so ALE can clean it up.
|
|
|
|
|
|
Conflicts:
doc/ale.txt
|
|
In particular, if we're working with a leex (.xrl) or yecc (.yrl) source
file, erlc would otherwise generate the corresponding .erl file in the
current directory (often the project root), which is generally not what
we want.
Unconditionally writing erlc output to a temporary directory also
matches Flycheck's behavior.
|
|
|
|
|
|
|
|
* Add hamllint linter for Haml
* Simplify hamllint
|
|
Some review needed.
|
|
* proselint: Add more suported filetypes
* proselint: Minor consistency fixes
* Vim help: Disable linters by default
|
|
* PHP: Fix column matching for unexpected single quotes
Unexpected single quotes resulted in an empty match, because PHP
surrounds the errors with quotes, and we check for the next quote to be
the ending delimiter.
For example: an unexpected string 'foo' would be presented as
`unexpected ''foo''`, and then the match would be `''`. The inner part
of that match is an empty string.
This adds a check for the keyword "expecting". Any quote after
"expecting" won't be matched, so we can use greedy matching instead of
non-greedy.
* PHP: Use "very magic"
The pattern started to get unreadable
Also replaced non-greedy matching (`\{-}`) by greedy matching, because
we don't need to match non-greedily anymore and it reads a little nicer.
* PHP: Add tests for column matches
And with that, also a test for unexpected single quotes.
|
|
|
|
Add cmakelint support for cmake filetype
|
|
convenience
|
|
|
|
|
|
* Fix Credo's line-matching pattern
In d3e7d3d5, the line matching pattern was changed to handle filenames
other than `stdin`. Unfortunately, this broke the pattern's ability to
reliably extract both line and column numbers because the latter is an
optional match and the filename portion was very greedy. This resulted
in line numbers being discarded (treated as part of the filename) and
column numbers being interpreted as line numbers.
This change simplifies the pattern to only anchor on the line's suffix,
ignoring the filename portion entirely.
Alternatively, we could use vim's `\f` ("file name characters") class,
but that could still run into problems when `:`'s naturally appear in
the filename.
* Add a Vader test case for the Credo handler
|
|
* escape dot in maker regex
* Create test_typecheck_handler
* Rename test_typecheck_handler to test_typecheck_handler.vader
|
|
Add sml support via smlnj
|
|
|
|
Add hdevtools linter for haskell
|
|
|
|
|
|
This adds support for the hdevtools haskell linter
https://github.com/hdevtools/hdevtools
The output for hdevtools is near identical to the ghc output so this
also extracts the ghc handler into the handle file and adds tests
* Add testing for previous major release of ghc
|
|
|
|
This adds support for the hdevtools haskell linter
https://github.com/hdevtools/hdevtools
The output for hdevtools is near identical to the ghc output so this
also extracts the ghc handler into the handle file and adds tests
|
|
Also added some tests for different error messages
|
|
|
|
Add yamllint option to pass in more options
|
|
|
|
Add tests for GCC 4.1.2, 4.9.2 and 6.3.1
|
|
|
|
|
|
* Add clang-tidy linter for cpp.
* Use stdin-wrapper to allow linting as you type.
|
|
|
|
|