summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-02Add documentation for ALEDetailJasper Woudenberg
2017-03-02Address some feedbackJasper Woudenberg
2017-03-01Add support for error detailsJasper Woudenberg
Some review needed.
2017-03-02proselint: Add more supported filetypes (#367)Daniel M. Capella
* proselint: Add more suported filetypes * proselint: Minor consistency fixes * Vim help: Disable linters by default
2017-03-01Fix PHP column matching for unexpected single quotes (#370)Adriaan Zonnenberg
* 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.
2017-03-01Merge pull request #369 from equal-l2/fix-cpp-clang-standard-flagw0rp
Use latest C++ standard
2017-03-01Use latest C++ standardequal-l2
2017-02-28Fix #288 - Add a command for running ALEw0rp
2017-02-27Fix a mistake in the documentationw0rp
2017-02-27Merge pull request #366 from kbenzie/cmakelintw0rp
Add cmakelint support for cmake filetype
2017-02-26Copy all loclist items returned from handlers, and set up defaults for ↵w0rp
convenience
2017-02-25Merge pull request #364 from jsivak/feature/pylint_symbolw0rp
Add the pylint symbol name for the msg_id of the error/warning.
2017-02-25Add display of the pylint symbol name for the msg_id.John Sivak
2017-02-25Add cmakelint support for cmake filetypeKenneth Benzie (Benie)
2017-02-23Create a Contributing section in the READMEw0rp
2017-02-22Fix Credo's line-matching pattern (#360)Jon Parise
* 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
2017-02-21escape dot in maker regex (#357)Chris Paul
* escape dot in maker regex * Create test_typecheck_handler * Rename test_typecheck_handler to test_typecheck_handler.vader
2017-02-21Fix #314 - quickfix should take precedence over loclist for jumpingw0rp
2017-02-21#314 filter both lists, and add tests to cover the list retrievalw0rp
2017-02-21Merge pull request #353 from pauloalem/masterw0rp
Add sml support via smlnj
2017-02-21Add an extra custom check for using endif instead of end, etc.w0rp
2017-02-21Remove a flaky PHP handlerw0rp
2017-02-21Merge remote-tracking branch 'adriaanzon/php-columns'w0rp
2017-02-21Merge pull request #348 from rob-b/add-hdevtools-linterw0rp
Add hdevtools linter for haskell
2017-02-18Add sml support via smlnjpaulo alem
2017-02-18PHP: Make parser work with more error messagesAdriaan Zonnenberg
2017-02-18PHP: Fix test for column highlightingAdriaan Zonnenberg
2017-02-17Add hdevtools linter for haskellRob Berry
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
2017-02-17Use a more reliable method for getting an ID for a jobw0rp
2017-02-17Prevent some stupid exceptionsw0rp
2017-02-16Modify the issue template to note how to capture the output of commandsw0rp
2017-02-16#254 Add an option for logging the output of commandsw0rp
2017-02-16#254 Capture command exit codes in the historyw0rp
2017-02-16Add an option for completely disabling command history, and add documentationw0rp
2017-02-16Refactor history management functions into their own filew0rp
2017-02-16Add a missing question markw0rp
2017-02-16Add an FAQ section to address concerns about battery lifew0rp
2017-02-16Merge pull request #350 from qantik/clang-fixw0rp
Fix clang++ flag typo
2017-02-16Fix clang++ flag typo.Andrea Caforio
2017-02-16Add hdevtools linter for haskellRob Berry
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
2017-02-15Fix a typow0rp
2017-02-15Fix #319 - Enable only cargo for Rust by defaultw0rp
2017-02-15Support columns on php handlerAdriaan Zonnenberg
Also added some tests for different error messages
2017-02-15Merge pull request #346 from AlexMasterov/fix/yaml-yamllint-syntaxw0rp
Fix 'yamllint' syntax
2017-02-15#338 Don't do anything from tags files.w0rp
2017-02-16Fix 'yamllint' syntaxAlex Masterov
2017-02-15Merge pull request #345 from AlexMasterov/feature/yaml-yamllint-optionsw0rp
Add yamllint option to pass in more options
2017-02-15Cover ALEToggle with Vader testsw0rp
2017-02-15Create a make target and variable for running specific testsw0rp
2017-02-15Merge pull request #343 from vimeitor/masterw0rp
Fix spelling