summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-19Fix the mscs tests on Windows, and use the improved Simplify for all tests ↵v1.7.0w0rp
instead.
2017-12-19Fix #1031 - Make the rust flags configurablew0rp
2017-12-19Fix #1240 - Parse line and column numbers for fatal embertemplatelint errorsw0rp
2017-12-19Fix mcsc paths and escaping for Windowsw0rp
2017-12-19Fix #1226 - Update the mcsc documentation to make it clearer how to use itw0rp
2017-12-19Clean up ALE linter buffer data when buffers are deleted, not unloadedw0rp
2017-12-19Allow the cursor messages to be disabled while Vim is runningw0rp
2017-12-19Merge pull request #1221 from JelteF/patch-1w0rp
Fix erb linter for puppet style erb templates
2017-12-19erb: fix testsJelte Fennema
2017-12-19Fix #1228 - Reset the cursor if echoing a message moves itw0rp
2017-12-18Merge pull request #1239 from languitar/vale-suggestionw0rp
Missing warning level 'suggestion' for vale
2017-12-18Missing warning level 'suggestion' for valeJohannes Wienke
Vale can also, optionally, raise suggestions. These weren't covered yet.
2017-12-18Merge pull request #1238 from languitar/alex-from-filew0rp
Make alex a file linter
2017-12-18Make alex a file linterJohannes Wienke
alex does not find its configuration file when using temporary files for input.
2017-12-18Fix #1210 - Fix a Windows path issue which broke TSLintw0rp
2017-12-18Get the TSLint tempname test running on Windowsw0rp
2017-12-18Remove some now redundant echo codew0rp
2017-12-18#1212 Fix some echo cursor flashing by only echoing once all linters are ↵w0rp
finished.
2017-12-18Indicate that 4.2.0 is no longer strictly required for prettier-eslint, and ↵w0rp
add links for prettier-eslint and prettier-standard
2017-12-18Sort the list of supported tools and add vale to more languagesw0rp
2017-12-18Enable the vale linter also for further markup languages (#1230)Johannes Wienke
* Enable the vale linter also for LaTeX * Enable the vale linter for rst files
2017-12-18Merge pull request #1232 from languitar/vale-jsonw0rp
Use JSON output with vale
2017-12-18Merge pull request #1237 from danpker/add-python-venv-folderw0rp
Add python venv folder
2017-12-18Update docsDaniel Parker
2017-12-18Add support for Vritual Env folder called venvDaniel Parker
2017-12-17Merge pull request #1235 from nickdiego/masterw0rp
Fix typos in flake8 test messages
2017-12-17Fix typos in flake8 test messagesNick Diego Yamane
Signed-off-by: Nick Diego Yamane <nick.diego@gmail.com>
2017-12-17Use JSON output with valeJohannes Wienke
Switches all vale instances to JSON output and provides an appropriate handler for that. Without JSON, no end_col is provided and text highlighting only catches the first character of every result.
2017-12-17Merge pull request #1220 from languitar/linter-alexw0rp
Add a linter for alex
2017-12-17Merge pull request #1222 from srathbone/masterw0rp
Fix PHP linter to support PHP 7.2 lint output
2017-12-17Look for mypy.ini to find Python project roots toow0rp
2017-12-17Fix a typow0rp
2017-12-17Clean up some doc formattingw0rp
2017-12-17Fix some right margin alignmentw0rp
2017-12-17Merge pull request #1203 from Carpetsmoker/autocmd-startw0rp
Add ALEStartLint autocmd
2017-12-17Merge pull request #1209 from butlerx/java-fixerw0rp
add google-java-format fixer
2017-12-17Update ale.txtw0rp
2017-12-13Fix PHP linter to support PHP 7.2 lint outputStephen Rathbone
2017-12-13Fix erb linter for puppet style erb scriptsJelte Fennema
2017-12-13Add a vader test for the message handlerJohannes Wienke
2017-12-13Add a linter for alexJohannes Wienke
https://github.com/wooorm/alex Enabled for text-like file formats and documented in README and doc.
2017-12-13Fix #1216 - Suppress trailing whitespace warings for ansible-lint when the ↵w0rp
option is set
2017-12-10Run before lint cycle, rename autocmdsMartin Tournoij
2017-12-10Disable a test on Windows for now, because Windows is stupidw0rp
2017-12-10Get the new test to pass on Windowsw0rp
2017-12-10Fix #1210 - Do not report this file as a temporary file in the quickfix list ↵w0rp
for TSLint
2017-12-09add google-java-format fixerbutlerx
2017-12-08Merge pull request #1198 from Carpetsmoker/goimportsw0rp
goimports fixer doesn't work for vendored libraries
2017-12-08Ask for the first two lines for :version in the issue templatew0rp
2017-12-08goimports fixer doesn't work for vendored librariesMartin Tournoij
In Go you can "vendor" packages by putting them in the `vendor/` directory for a project. Adding the `-srcdir` argument makes `goimports` pick up these packages, in addition to what you have in GOPATH. Without this, `goimports` is not very useful, since most projects vendor their packages.