Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-18 | Fix #308 - Check Dart files with dartanalyzer | w0rp | |
2017-07-17 | Add yaml swaglint linter (#771) | Matthew Turland | |
* Add yaml swaglint linter | |||
2017-07-16 | Merge pull request #774 from dmitrivereshchagin/syntaxerl-linter | w0rp | |
Add SyntaxErl linter | |||
2017-07-16 | Added phpstan linter for php. (#772) | Ardis | |
* Added phpstan linter for php. | |||
2017-07-16 | Add SyntaxErl linter | Dmitri Vereshchagin | |
These changes add [SyntaxErl][1] integration. SyntaxErl is a syntax checker tool for Erlang. [1]: https://github.com/ten0s/syntaxerl | |||
2017-07-16 | #739 - Document the end_col and end_lnum keys for the loclist format | w0rp | |
2017-07-14 | #764 - Update the documentation to mention how to echo messages with the ↵ | w0rp | |
ALELint autocmd | |||
2017-07-13 | Add scalastyle linter (#766) | Kevin Kays | |
* Add support for scalastyle * Add scalastyle docs * scalastyle support for column numbers * off by one column * Add tests for scalastyle command and handler * update readme for scalastyle * allow full scalastyle options instead of just config file * fix indentation * allow scalastyle config file in parent directories by a couple names. * check for missing match args with empty * remove echo * use a for loop | |||
2017-07-12 | Add rails_best_practices handler (resolves #655) (#751) | Eddie Lebow | |
* Move FindRailsRoot() to more general location * Add rails_best_practices handler (resolves #655) * Update documentation for rails_best_practices Also add brakeman to *ale* documentation. * rails_best_practices: allow overriding the executable * rails_best_practices: format help correctly * rails_best_practices: capture tool output on Windows | |||
2017-07-11 | Fix documentation typo | Julian Andrews | |
2017-07-11 | Prefer --fast for stack-build (#754) | Jake Zimmerman | |
* Vim scripts shouldn't have hyphens Especially not ones that will be autoloaded. You can't have a hyphen in a function name, so autoloading functions based on filename will fail. * Add g:haskell_stack_build_options, default: --fast If we're going to use the --fast option, we may as well go the whole 9 yards and let the user configure the 'stack build' flags. * Create documentation for stack-build options | |||
2017-07-09 | Add new Haskell linter (#742) | Jake Zimmerman | |
* Add stack-build linter for Haskell The stack-build linter works better than the other two linters when you're working with an entire Haskell project. It builds the project entirely and reports any errors. The other two Haskell GHC linters only work on single files, which can result in spurious errors (for example, not being able to find imports). * Document all available Haskell linters * Split GHC checkers into separate files | |||
2017-07-08 | Fix a syntax error in an example | w0rp | |
2017-07-08 | Added missing statement about `<Plug>(ale_toggle)` mapping to the ↵ | Andrew Vimmer | |
documentation (#740) * Added missing statement about a `<Plug>` mapping. * Fixed logical mistake related to "option calling". * Rectified article usage according to a request. | |||
2017-07-08 | Document the virtualenv directories variable in the main file instead | w0rp | |
2017-07-04 | Store the output of commands by default so I don't have to ask people to ↵ | w0rp | |
turn it on any more. | |||
2017-07-03 | Fix #182 - Add support for lintr | w0rp | |
2017-07-03 | Fix #178 - Check Stylus files with stylelint | w0rp | |
2017-06-29 | Make pug-lint detect node_modules executables, and add options for pug-lint ↵ | w0rp | |
like the other linters | |||
2017-06-29 | Adds an option to pass additional arguments to the verilog/verilator … (#698) | Tarik Graba | |
* Adds an option to pass additional arguments to the verilog/verilator linter The new otion is g:ale_verilog_verilator_options + doc * Spell check verilog linter doc file * Add entries to the verilog linters in the doc table of content * Vader test for verilog/verilator linter args option verilog_verilator_options | |||
2017-06-28 | Add prettier-standard support (#702) | Adam Stankiewicz | |
* Add prettier-standard support * Update ale-javascript.txt Remove a duplicated header line. | |||
2017-06-28 | Use a new window for the ALEFixSuggest command, and document it better | w0rp | |
2017-06-27 | #678 - Document the sign column color behaviour | w0rp | |
2017-06-26 | Document :ALEInfo better | w0rp | |
2017-06-26 | #171 - Document every highlight | w0rp | |
2017-06-24 | Add clangcheck Linter to cpp (#686) | Gagbo | |
Add a clangcheck linter | |||
2017-06-24 | Fix #687 - Check files on enter if they have changed | w0rp | |
2017-06-20 | Fix #668 - Support eslint for TypeScript | w0rp | |
2017-06-18 | #659 - Add options for Python fixers, and cut down on duplicated documentation | w0rp | |
2017-06-14 | Fix #536 - Implement linter problem type re-mapping | w0rp | |
2017-06-14 | Fix FusionScript documentation text alignment | w0rp | |
2017-06-14 | Add fusion-lint, documentation, and tests (#648) | Ryan | |
* Add `fusion-lint` for first FusionScript linter * Add documentation over `fusion-lint` * Add tests for `fusion-lint` command callback | |||
2017-06-13 | Document the tsserver linter | w0rp | |
2017-06-11 | Perlcritic column number and rule names (#640) | Steven Humphrey | |
* Add column number to perlcritic linting output This returns the column number of the perlcritic error so that ale can show the column in addition to the line where perlcritic found an error. * Add perlcritic configuration for rule names This adds a configuration setting so that the name of the perlcritic rule is shown [Rule::Name] after the error message. This is useful to lookup the rule failure. * Add a vader test for perlcritic#GetCommand | |||
2017-06-08 | Fix typo | Marcio Mazza | |
2017-06-06 | Allow ALEFix functions to be defined with only the buffer argument | w0rp | |
2017-06-06 | Use BufWinEnter for g:ale_lint_on_enter instead | w0rp | |
2017-06-05 | doc: fix typo: s/the the/to the/ | Daniel Hahler | |
2017-06-03 | Add :ALEFirst and :ALELast commands (#616) | Drew Neil | |
* Add :ALEFirst and :ALELast commands * Add documentation for ALEFirst and ALELast commands * Add tests for ale#loclist_jumping#JumpToIndex() * Fix the loclist jumping tests | |||
2017-06-03 | Document that prettier and prettier-eslint are supported | w0rp | |
2017-06-01 | Document the <Plug>(ale_fix) mapping | w0rp | |
2017-06-01 | #607 - Update the documentation for ale-fix to suggest an assignment which ↵ | w0rp | |
will work in vimrc | |||
2017-06-01 | Fix #499 Set an explicit height for the quickfix list, and make the height ↵ | w0rp | |
configurable | |||
2017-05-31 | Fix #537 - Add support for balloons | w0rp | |
2017-05-30 | #591 Support fixing files on save | w0rp | |
2017-05-27 | Fix #500 - Support defining aliases for linter names | w0rp | |
2017-05-27 | Support both prettier and prettier-eslint | w0rp | |
2017-05-26 | Fix #577 Add an option preventing linting of large files | w0rp | |
2017-05-26 | Fix #371 Allow ALE to be disabled in different buffers | w0rp | |
2017-05-26 | #371 Allow buffer variables to be set based on patterns | w0rp | |