Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-27 | Merge pull request #699 from jwoudenberg/master | w0rp | |
Elm linter shows full error ranges | |||
2017-06-27 | Elm linter shows full error ranges | Jasper Woudenberg | |
2017-06-27 | Remove style classification from E999 (#696)v1.4.0 | Nick Krichevsky | |
* Remove style classification from E999 * Update test_flake8_handler to reflect E999 changes | |||
2017-06-27 | Fix #680 - Use --shadow-file to check for problems with mypy while you type | w0rp | |
2017-06-25 | Change regex to better handle messages with multiple groups of parentheses. | John Sivak | |
2017-06-25 | Fix #694 - Ignore BEGIN failed errors for Perl only for certain errors | w0rp | |
2017-06-25 | Move ale#handlers#c functions into ale#c | w0rp | |
2017-06-25 | Feature/restore display of symbol (#693) | John Sivak | |
* Add display of the pylint symbol name after the message. * Update test to pass. | |||
2017-06-25 | Improve elm linter (#637) | Jasper Woudenberg | |
* Improve elm linter Some types of errors do not return nice JSON. Show them on the first line instead of showing nothing. * Remove unnecessary properties from elm linter * Add a vader test for elm-make linter * Test non-JSON elm-make errors are shown | |||
2017-06-25 | #684 Handle tslint errors without the severity included, and use character ↵ | w0rp | |
instead of position for the columns | |||
2017-06-25 | Fix #684 - Use the JSON format for tslint, for consistency betwen versions, ↵ | w0rp | |
and handling of end line and column numbers | |||
2017-06-24 | Add clangcheck Linter to cpp (#686) | Gagbo | |
Add a clangcheck linter | |||
2017-06-24 | Added builddir option to clang-tidy to point to json folder (#688) | Gagbo | |
Detect compille_commands.json files for clang-tidy | |||
2017-06-24 | #681 Show extra kotlin errors at line 1 | w0rp | |
2017-06-22 | Fix #676 - Fix handling of Perl errors | w0rp | |
2017-06-22 | Set the --no-color flag for Vint if we fail to parse the version number for ↵ | w0rp | |
some reason | |||
2017-06-21 | Fix some escaping and make some tests set filenames consistently | w0rp | |
2017-06-21 | Support project's local phpcs installation (#666) | Eric Stern | |
* Use locally-installed PHPCS if available * Add author * Add configuration options * Escape executable * Add tests | |||
2017-06-21 | Fix the standard and xo handlers so they call the eslint function | w0rp | |
2017-06-20 | Fix #668 - Support eslint for TypeScript | w0rp | |
2017-06-19 | handle column number in javac linter (#660) | oaue | |
* handle column number in javac linter * Updated tests with column number for javac errors. * Updated tests with column number for javac errors. | |||
2017-06-19 | #662 Fix kotlinc configuration name escaping | w0rp | |
2017-06-18 | TSLint: distinguish warnings from errors (#663) | Pavel Kuropatkin | |
* TSLint: distinguish warnings from errors * Test for TSlint warning/error distinguishing code added. | |||
2017-06-15 | Fix for Crystal support (#651) | David Alexander | |
* Strip color from Crystal compiler output * Don't lint files if the file doesn't exist * Lint files if they are readable | |||
2017-06-14 | #430 Use the style sub_type for flake8 problems | w0rp | |
2017-06-14 | Split up the flake8 and ansible-lint handlers | 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 | Merge branch 'tsserver' | 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-09 | Add tsserver support | w0rp | |
2017-06-08 | Support for GNU Awk linting (#638) | Mark Korondi | |
* GNU Awk linter support * Documentation for awk linter | |||
2017-06-06 | Fix #625 Ignore Perl errors from other files | w0rp | |
2017-06-06 | #482 - Fix Flow handling with relative paths | w0rp | |
2017-06-06 | Complain about incorrect uses of expand('%...') | w0rp | |
2017-06-06 | #620 Check the Nim files on disk instead | w0rp | |
2017-06-06 | Fix #624 - Ask for the Vint version in the background | w0rp | |
2017-06-02 | Add ktlint support (without formatting) for kotlin filetype (#610) | Francis Agyapong | |
* Add ktlint support (without formatting) for kotlin filetype * Fix code style and refactor to use ALE utility functions (GetMatches) * Remove options for configuration file * Refactor: Rename exec variable and use ale#Set for variable configuration | |||
2017-05-31 | Fix #557 - Detect C project roots and include root directories with headers, ↵ | w0rp | |
or include directories | |||
2017-05-31 | Fix #596 - Report exceptions thrown by flake8 | w0rp | |
2017-05-30 | Remove -X flag from perl defaults. | Olaf Alders | |
"-X Disables all warnings regardless of use warnings or $^W". See "perldoc perlrun" or http://perldoc.perl.org/perlrun.html With the current defaults, warnings are squashed. For example: $ perl -X -Mwarnings -c -e'BEGIN { 42 + undef }' -e syntax OK $ perl -Mwarnings -c -e'BEGIN { 42 + undef }' Use of uninitialized value in addition (+) at -e line 1. -e syntax OK So, it's not clear from the current defaults whether Ale wants to remove warnings or enable them. As it stands, it's trying to do both and the disabling appears to win. This commit enables warnings by default. | |||
2017-05-28 | Ember-template-lint handler: properly handle template parsing errors. | Adrian Zalewski | |
2017-05-28 | Merge pull request #585 from gavocanov/master | w0rp | |
kotlin linter support for maven/pom.xml | |||
2017-05-28 | Revert "Fix #501 - Do not run javac when it is just a stub asking you to ↵ | w0rp | |
install Java on Mac OSX" This reverts commit 528355e2c6cf64fbc0d459a7a512a7823f90043d. | |||
2017-05-27 | Refactor running of local Node programs with a helper function | w0rp | |
2017-05-27 | kotlin linter support for maven/pom.xml | Paolo Gavocanov | |
2017-05-26 | #576 Run the eslint.js file created by React with node on Windows | w0rp | |
2017-05-24 | Translate pylint output column to 1-based index | Nozomu Okuda | |
This should fix #575; also added vader tests to ensure that translation is working properly. | |||
2017-05-22 | Fix initialization of the use_global variable for eslint | w0rp | |