summaryrefslogtreecommitdiff
path: root/ale_linters
AgeCommit message (Collapse)Author
2016-12-13Add support for Swift with swiftlint (#214)David Mohundro
* Add support for swift with swiftlint * Fix issue by adding '.swift' file extension
2016-12-13Fix the proeslint linter for plaintext filesw0rp
2016-12-13Add Elm linting via elm-make (#213)Eric Lehner
* Add support for Elm linting * Adding documentation for Elm * Adjusting spacing * Addressing concerns listed in pull request Removed the s:FindRootDirectory function as it does not make much sense in this context. Adjusted the rest of the code to handle the removal of that function, including using the ale#util function to find the nearest file. Ensured that when an empty filepath is found, the code does not attempt to change directories. Ensured that the linter would take from stdin using the wrapper.
2016-12-06add stylelint supportdiartyz
2016-12-05Fix proper extension handling for tslintKrystian Paszkiewicz
2016-12-04LaTeX Linters (#190)Andrew Balmos
* Add chktex linter * Alias plaintex to tex * Add lacheck linter Closes #179 * Add the chktex warning code This very useful to have when you want to suppress lint warnings with LaTeX comments. chktex tends to be a bit noisy so this often needed. * lacheck: Make regex less specific To be more robust future changes in `stdin-wrapper`
2016-12-04Add support for tslint.json file detection in tslint (#198)kyrisu
* Add support for tslint.json file detection in tslint * Fix tslint.json path building for tslint
2016-12-01Add options variable for ruby-rubocopPo Shan Cheah
2016-11-28Fix #188: Revert to and older version of the Haskell linter, which works betterw0rp
2016-11-28Add Proselint (#185)poohzrn
* Add Proselint - Markdown - Tex - Text * Use ale#handler#HandleUnixFormatAsWarning * Indentation
2016-11-25Add puppet linters (#183)Alexander "Ace" Olofsson
* Start adding Puppet linters * Use the correct output stream for puppet parser * Finish Puppet and puppet-lint linters * Add Puppet information to documentation
2016-11-23Add ocaml linter: merlin (#177)Andrey Popp
* Add ocaml linter: merlin * Add docs for ocaml-merlin integration. * Remove annoying error message from ocaml merlin linter * Update doc to list merlin linter
2016-11-21Flow linter improvements (#176)Andrey Popp
* Fix flow linter to provide filename of the buffer Related #173 * Fix flow linter not to fail on empty response * Various improvement to message parsing
2016-11-14Add g:ale_python_flake8_executable (#174)Marius Gedminas
* Add g:ale_python_flake8_executable Closes #172. * Add g:ale_python_flake8_args * Always add - to flake8 invocations
2016-11-10Merge pull request #170 from mkusher/typescript_typecheck_linterw0rp
Add typecheck linter for typescript
2016-11-10removed useless echom from typecheck.vimAleh Kashnikau
2016-11-10Add typecheck linter for typescriptAleh Kashnikau
2016-11-03flow linting should only happen on flow typed files.delianides
2016-11-01Added support for foodcriticEdward Larkey
Adding support the foodcritic linter for Chef files. Listing all issues as warnings for now Doesn't get in the way of rubocop linting if ft=ruby.chef Updated documentation Closes #127
2016-11-01Add FlowType support (#157)Zach Perrault
* Add `javascript/flow` linter * Add documentation for flow * Remove a line from the docs that was from eslint * Only run if flow gives output; Correct link in doc * Address PR feedback #157
2016-10-31Add support for clang for cmshr-h
2016-10-30Merge pull request #153 from keith/ks/shellcheckw0rp
Choose shell dialect based on vim syntax
2016-10-30Merge pull request #155 from deathmaz/feature/htmlhint-argsw0rp
Added options variable for htmlhint
2016-10-28Default stdin in htmlhint optionsdeathmaz
2016-10-27Choose shell dialect based on vim syntaxKeith Smiley
Shellcheck is smart enough to check the shebang in a given file to determine which dialect to use. Unfortunately this doesn't work for files without shebangs, even if it might be apparent what dialect should be used, such as "bashrc" or "foo.bash". Luckily `filetype.vim` defines specific vars based on which shell dialect is being used based on a huge list of conditions. With this change we take those into account for all the types shellcheck supports, otherwise we fallback to letting it try and decide.
2016-10-27Add pylint formatterKeith Smiley
This customizes the output format of pylint in order to use the same pep8 parser
2016-10-27Added optoins variable for htmlhintdeathmaz
2016-10-24Merge #139 - Add Markdown linting supportw0rp
2016-10-24Add support for mlint, a MATLAB linter (#145)Alex Layton
* Add support for mlint, a MATLAB linter * Fix mlint linter as requested * Clean up leftover loaded flag for mlint
2016-10-23Add node_modules support for JSHint, and use the global config as a fallback.w0rp
2016-10-23Support loading eslint from node_modules, re issue #118.w0rp
2016-10-21Add support for dot-seperate linters, improve linter testsBjorn Neergaard
This PR first and formost implements support for dot-seperate filetypes, a very trivial change. This closes #132 But more importantly, this PR vastly improves the test quality for `ale#linter#Get`. It enables us to reset the state of ale's internal linter cache, to facilitate better testing, as well as making use of mocked linters instead of depending on linters on disk (which may change). In addition, a dummy linter is defined to test the autoloading behavior. Header guards were removed from all linters as: * A: ale won't try and load linters if they already exist in memory * B: we can't reset state for testing if they can't be loaded again
2016-10-21Merge pull request #133 from ehzShelter/masterw0rp
Added c++14 standard support and POSIX API compile time linker flags and ISO c++14 atomic and thread library support…
2016-10-21make it less verbose for c and cppehzShelter
2016-10-21Merge pull request #129 from neersighted/ansiblew0rp
Add ansible-lint support and factor out PEP8 handler
2016-10-21Added c++14 standard support and POSIX API compile time linker flags for ↵ehzShelter
avoiding annoying errors and warnings
2016-10-20#131 Keep the error types in the message for eslintw0rp
2016-10-20Document ansible-lintBjorn Neergaard
2016-10-20Add ansible-lint support and factor out PEP8 handlerBjorn Neergaard
2016-10-20Add support for cppcheck (#126)Bart Libert
* Add support for cppcheck * Fix vint error in cppcheck handler * Add vader test for CppCheck format handler
2016-10-19Fix the D error parsing to handle output without column numbers.w0rp
2016-10-19Fix some Vint problems.w0rp
2016-10-19Added support for hlintJesse Paroz
2016-10-16Add linters for Elixir (#113)Łukasz Jan Niemier
* Add Credo linter for Elixir * Add requested changes TODO: check if all message types are covered in `if` chain. * Add information about Credo linter to README * Add information about Credo linter to doc
2016-10-13Merge pull request #101 from s-ol/luacheckw0rp
add luacheck linter
2016-10-12Hide more trailing whitespace warnings when the option is on for flake8.w0rp
2016-10-12add luacheck linters-ol
2016-10-11Fix #87 - Allow linter filetypes to be aliasedw0rp
2016-10-11Match both error and syntax error in verilogBjorn Neergaard
2016-10-11Default handlers to warningBjorn Neergaard