summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-26doc: Add ale_c_astyle_options in ale-cjhlink
2020-07-26feat: Add project option file support for astylejhlink
2020-07-26feat: Use stdin/redirection for astylejhlink
2020-07-25test: Add cpp test case for astylejhlink
2020-07-25Merge branch into add-astyle-for-c-formattingjhlink
2020-07-25doc: Add astyle to ale-cpp-options in ale.txtjhlink
2020-07-25doc: Add astyle in c++ section in supported-tooljhlink
2020-07-25doc: Add astyle to c++ in supported lang & toolsjhlink
2020-07-25feat: Add astyle in c++ section in supported-tooljhlink
2020-07-25feat: Add astyle to c++ in supported lang & toolsjhlink
2020-07-25doc: Add astyle to ale-cppjhlink
2020-07-25feat: Add cpp to registry.vimjhlink
2020-07-25feat: Add cpp support to astyle fixerjhlink
2020-07-25Update ale-java.txtLuiz Gustavo
2020-07-21Merge pull request #2914 from hsanson/2913-fix-checkstyle-config-with-optionsw0rp
Fix 2913 - checkstyle config file ignored.
2020-07-21Merge pull request #3060 from hsanson/345-update-javalsp-documentationw0rp
Fix 345 - update java language server docs.
2020-07-21Merge pull request #3070 from hsanson/2732-add-bashate-supportw0rp
Fix 2732 - Add bashate support
2020-07-21Merge pull request #3119 from hsanson/2269-ktlint-stdin-supportw0rp
Fix 2269 - use ktlint stdin.
2020-07-21Merge pull request #3137 from hsanson/3132-fix-eclipselsp-commandw0rp
Fix eclipselsp command function.
2020-07-15Merge pull request #3225 from markeganfuller/puppet_parser_error_at_endHoracio Sanson
Handling for puppet parser error at end of input.
2020-07-15Handling for puppet parser error at end of input.Mark Egan-Fuller
Add handling for `Syntax error at end of input` which doesn't give a line or column. Fixes #2656
2020-07-11Merge pull request #3232 from CherryMan/masterHoracio Sanson
Zig support using zls.
2020-07-10Support zls language server for zigSheheryar Parvaz
2020-07-10doc: Remove c++ from astylejhlink
2020-07-10style: Adjust spacingjhlink
2020-07-10test: Add astyle vader testjhlink
2020-07-10doc: Add astyle to supported lang & toolsjhlink
2020-07-10doc: Add astyle to supported-tools.mdjhlink
2020-07-10doc: Add astyle to ale-c-options in ale-contentsjhlink
2020-07-10doc: Add astyle entry to ALE c integrationjhlink
2020-07-10feat: Add astyle to fix/register.vimjhlink
2020-07-10feat: Add ALE fixer for astylejhlink
2020-07-09Enable languagetool for asciidoctor files.Horacio Sanson
2020-07-08eslint: Use cwd from executable location to fix nested projects (#3222)Kevin Locke
* Split FindNearestExecutable from FindExecutable The path searching in ale#node#FindExecutable() will be useful for eslint. Refactor it into a separate function so it can be used without regard for the state of the _use_global and _executable variables. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> * eslint: Set project root from local executable Using the nearest directory with node_modules does not work correctly for nested projects where the eslint dependencies are in the outer project. For example: https://github.com/dense-analysis/ale/issues/3143#issuecomment-652452362 Adopt the behavior of SublimeLinter, which runs from project_root determined by the presence of the eslint executable in node_modules/.bin (or eslint in dependencies/devDependencies of package.json, which we can add later as necessary). See [NodeLinter#find_local_executable]. [NodeLinter#find_local_executable]: https://github.com/SublimeLinter/SublimeLinter/blob/056e6f6/lint/base_linter/node_linter.py#L109 Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
2020-07-08Merge pull request #3223 from cspeterson/masterHoracio Sanson
Puppet handler regex fix, plus new test
2020-07-02Tests/puppet: add new test case for a heretofore unaccounted-for version of ↵Christopher Peterson
error message
2020-07-02Puppet handler: make error-parsing regex more robustChristopher Peterson
2020-07-01Run ESLint fixer from project root, where possible (#3096)Kevin Locke
* Split eslint#GetCdString from eslint#GetCommand Move the code for finding the project root and building the cd string into a separate function so that it can be reused in the eslint fixer. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> * Run ESLint fixer from project root dir To match the ESLint linter, as changed in 9ee57d43 (which I forgot to apply to the fixer, whoops). Fixes: #3094 Closes: #3095 Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
2020-06-20Merge pull request #3158 from ulidtko/improve-dockerfile_lintHoracio Sanson
Improve :ALEDetail for dockerfile_lint [READY TO REVIEW]
2020-06-19Merge pull request #3172 from 0xMH/patch-1Horacio Sanson
More docs for beginners to use cloudformation linter
2020-06-11Update the internal ALE version to 2.7.0v2.7.0w0rp
2020-05-31Add test for LSP autoimportJerko Steiner
2020-05-31Add support for rename (documentChanges)Jerko Steiner
2020-05-31Fix completion with langserver (autoimport in go)Jerko Steiner
2020-05-30vim/vint: show policy nameKeith Maxwell
So that I can find the relevant information in the vint linting policy summary and policies can be easily configured https://github.com/Vimjas/vint/wiki/Vint-linting-policy-summary Before this change an example warning message appears as: autocmd should execute in an augroup or execute with a group (see :help :autocmd) After this change the same example appears as: ProhibitAutocmdWithNoGroup - autocmd should execute in an augroup or execute with a group (see :help :autocmd)
2020-05-25Fixes govet linter for go 1.13+, with testsmostfunkyduck
2020-05-22Support revive for go files (#2933)Paco
Signed-off-by: Penghui Liao <liaoishere@gmail.com>
2020-05-20Fixes #3092 - Implement loading `@file` c argumentsStephen Robinson
2020-05-19Merge pull request #3173 from nibocn/feat#javac-sourcepathHoracio Sanson
feat(javac): Add java_javac_sourcepath variable
2020-05-19refactor(javac): ale_java_javac_sourcepath variable defaults to StringNiBo