summaryrefslogtreecommitdiff
path: root/ale_linters
AgeCommit message (Collapse)Author
2018-08-02Tell HHAST to only look at open filesFred Emmott
Given ALE only cares about open files, this has no observable change, except for significantly reduced resource usage.
2018-08-02Merge pull request #1770 from fredemmott/hackw0rp
Split Hack out from PHP, modernize
2018-08-02Suggested changesFred Emmott
2018-08-02Add Haskell IDE Engine (hie) support (#1735)Luxed
* Adding support for haskell-ide-engine * Work with the current directory if no stack.yaml file is found * Added Cabal file detection, updated documentation and added tests * Updated help
2018-08-02coding styleFred Emmott
2018-08-02Split Hack out from PHP, modernizeFred Emmott
fixes #1738 - Replace previous `hh_client` usage with LSP client - Add `HHAST` linter - Split Hack from PHP: Hack is increasingly diverging from PHP: - Hack tools do not understand PHP - Most PHP tools do not handle Hack code well (including vim's syntax highightling files) - http://github.com/hhvm/vim-hack now sets filetype to `hack`
2018-07-30Indicate that a C compiler failed due to problems in a header filew0rp
2018-07-29Add support for parsing compile_commands.json files for C compilersw0rp
2018-07-26fix(linters: python): mark as lint_fileactionless
2018-07-26Add support for 'vulture' for PythonYauhen Kirylau
2018-07-25Merge pull request #1757 from jtalowell/masterw0rp
Providing cquery support for C files
2018-07-25Fix joker finding .joker filemorrifeldman
Add --working-dir option so joker can find a .joker file in the project root directory.
2018-07-25Providing cquery support for C filesjtalowell
2018-07-25Switch to v:t_ variables for type checksw0rp
2018-07-24#1754 Require snake_case names for linters in the codebasew0rp
2018-07-23Merge pull request #1745 from sharils/masterw0rp
Work around hot-reloading issue again
2018-07-23Fix autoload for phoenixsharils
When dializer isn't a dependency, mix dialyzer recompiles the whole project because it's not possible to know if this command dialyzer exist or not until recompilation is done. Then the timestamps of the project is messed up which results in broken hot-loading. In this case, mix help dialyzer would return zero which prevents compilation of the whole project since dialyzer isn't installed, it's help manual doesn't exist. When dialyzer is a dependency, mix dialyzer would just run the command. In this case, mix help dialyzer would return 1 which allows mix dialyzer to run.
2018-07-22Merge pull request #1751 from melentye/masterw0rp
Add Clangd language server support for C
2018-07-22Add Clangd language server support for CAndrey Melentyev
2018-07-22Merge pull request #1750 from kylef/kylef/apib-tmpw0rp
Make drafter linter use stdin instead of writing to tmp file
2018-07-22Make drafter linter use stdin instead of writing to tmp fileKyle Fuller
Writing to a tmp file is unnecessary as drafter will use stdin if a path is not provided.
2018-07-22Merge pull request #1742 from typetetris/masterw0rp
Add cabal-ghc linter
2018-07-20Add cabal-ghc linterEric Wolf
cabal-ghc calls ghc via cabal exec and so ghc has access to packages in cabal sandboxes for example
2018-07-19Add documentation and testing for fortlsBen Spiers
2018-07-19Add support for Fortran language server by @hansecBen Spiers
2018-07-16remark-lint without saving to diskTakashi WADA
2018-07-16Support remark-lint installed locallyTakashi WADA
2018-07-15Add kotlin language server support (#1725)MTDL9
* Add kotlin languageserver linter definition * Added kotlin languageserver references in docs, fix missing !! on other linters * Added Vader tests for root path detection in Kotlin Language Server
2018-07-15Massively reduce the amount of code needed for linter testsw0rp
2018-07-12Fix #1716 - Replace tempdir() with a wrapper to preserve TMPDIRw0rp
2018-07-07Merge pull request #1697 from ananace/add-puppet-languageserverw0rp
puppet: Add puppet-languageserver linter
2018-07-06Add flow-language-serverjamestthompson3
2018-07-05Clean up root detection for puppet languageserverAlexander Olofsson
2018-07-05vue: Add the vls language server linterAlexander Olofsson
2018-07-04puppet: Add puppet-languageserver linterAlexander Olofsson
2018-07-04Make the language option for LSP linters optionalw0rp
2018-07-04Remove deprecated code for the 2.0 releasev2.0.0w0rp
2018-07-01add pyre lsp linter to python lintersDerek P Sifford
2018-07-01Respect ale_warn_about_trailing_whitespace for yamllintw0rp
2018-07-01Capture error codes for yamlllintw0rp
2018-07-01Fix #1412 - Use --stdin-filename for newer reek versionsw0rp
2018-06-27Rust Cargo linter: Improve workspace support (#1679)Dan Aloni
* Rust Cargo linter: Improve workspace support When using Cargo workspaces [1], there is a 'Cargo.toml' directory in a top level directory, listing all the crates in the project. If we are currently editing one of the crates, 'cargo build' should execute in that directory for that crate's separate `Cargo.toml`, otherwise Cargo may spend more time possibly rebuilding the entire workspace, and maybe failing on one of the other crates, instead of succeeding on the current. [1] https://doc.rust-lang.org/book/second-edition/ch14-03-cargo-workspaces.html
2018-06-27Merge pull request #1675 from nicopauss/masterw0rp
Improve pyrex cython linter.
2018-06-27Merge pull request #1682 from fennerm/fix_prospector_e474w0rp
Fix prospector empty string error
2018-06-26Fix prospector empty string errorFenner Macrae
Prospector linter is raising error when no warnings are present in file (#1680). Copied fix from #779.
2018-06-25Handle cython warning with custom handle and remove '--warning-errors'.Nicolas Pauss
Add a custom handler to support cython warning format. Remove '--warning-errors' to keep previous behaviour.
2018-06-25sh: add bash-language-server linterChristian HoĢˆltje
2018-06-25Improve pyrex cython linter.Nicolas Pauss
Like many other linters, use variables for the executable and options used by the linter. By default, the linter now report every warnings as errors with `--warning-errors`. Also add include directory and set working directory to file directory.
2018-06-20Merge pull request #1665 from ashemedai/masterw0rp
Make CloudFormation linter work again with latest version
2018-06-20Merge pull request #1618 from colbydehart/masterw0rp
[new linter] Add mix linter for elixir