summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2017-04-17Fix link to cppcheckJonathan Emord
2017-04-15Merge pull request #471 from breed808/gometalinterw0rp
Add gometalinter linter for go files
2017-04-15Merge pull request #474 from jordanandree/add-crystal-lintw0rp
Add linter for Crystal lang
2017-04-15Add SQL linter sqlint, closes #395 (#472)Adriaan Zonnenberg
2017-04-13add crystal lintjordanandree
- invokes via `crystal build` command without codegen - adds vader tests
2017-04-13Add documentation for gometalinterBen Reedy
2017-04-12Fix broken linksAdriaan Zonnenberg
2017-04-12Fix markdown indentationAdriaan Zonnenberg
2017-04-08Add Ruby MRI linter (#453)Brandon Roehl
* Added ruby mri linter * Added to the list of supported linters * Async and now with 4 spaces * Vader tests for ruby * Match style choices * Vader test for the Ruby handler now works and passes
2017-04-07Add support for linting Handlebars templates with ember-template-lint (#452)Adrian
* Ember-template-lint Handlebars template linter: initial handler, test. * Handlebars support with ember-template-lint: basic documentation entries.
2017-03-30Merge pull request #429 from breed808/gow0rp
Add support for gosimple and staticcheck
2017-03-30Add options to facilitate linting only in normal mode (#425)taylorskalyo
* [#420] Add options to facilitate linting only in normal mode ale_lint_on_text_changed: Allow setting to 'insert' or 'normal' to lint when text is changed only in insert or normal mode respectively. ale_lint_on_insert_leave: This flag can be set to 1 to enable linting when leaving insert mode. * [#420] Test updated global options Ale should - bind to TextChanged events when g:ale_lint_on_text_changed = 1 - bind to TextChanged events when g:ale_lint_on_text_changed = 'always' - bind to InsertLeave event when g:ale_lint_on_insert_leave = 1
2017-03-30Add support for gosimple and staticcheckBen Reedy
2017-03-27Enabling linting on save by default, re #333w0rp
2017-03-27Document the Dogma linterw0rp
2017-03-25Add support for ASM files using GCCLucas Kolstad
2017-03-23Document support for hdevtoolsLucas Kolstad
2017-03-18Add support for nim checkbaabelfish
2017-03-13add slim-lint (#388)Markus Doits
* add slim-lint * add slim readme entry * add slim entry to doc * add slimlint vader test
2017-03-05Add support for nix lintingAlistair Bill
2017-03-03Add hamllint linter for Haml (#377)Patrick Lewis
* Add hamllint linter for Haml * Simplify hamllint
2017-03-02proselint: Add more supported filetypes (#367)Daniel M. Capella
* proselint: Add more suported filetypes * proselint: Minor consistency fixes * Vim help: Disable linters by default
2017-02-25Add cmakelint support for cmake filetypeKenneth Benzie (Benie)
2017-02-23Create a Contributing section in the READMEw0rp
2017-02-18Add sml support via smlnjpaulo alem
2017-02-16Add a missing question markw0rp
2017-02-16Add an FAQ section to address concerns about battery lifew0rp
2017-02-11Fix the clangtidy linter, and document everythingw0rp
2017-02-11Make javac work in a basic wayw0rp
2017-02-11Fix #330 - Explain how to check JSX with eslint and stylelintw0rp
2017-02-11Add clang to cpp linters.tomotanakamura
2017-02-09Merge pull request #306 from ahmedelgabri/standardjsw0rp
Add standard linter
2017-02-09Merge pull request #285 from medains/masterw0rp
Linter addition of PHP Mess Detector
2017-02-08Make some corrections in the READMEw0rp
2017-02-05Add standard linterAhmed El Gabri
2017-02-05Make a note in the FAQ about how to use quickfix errorsw0rp
2017-02-01Linter addition of PHP Mess Detectormedains
2017-01-30Dockerfile linting via hadolint (#282)Łukasz Jan Niemier
* Add hadolint linter for Dockerfiles * Fix path * Fix typo * Update docs
2017-01-30Fix #249 Mention how to clear sign background colors in the READMEw0rp
2017-01-22Add erlc lint for Erlang (#248) (#255)Magnus
* Add erlc lint for Erlang (#248) * Ignore certain errors in Erlang .hrl files (#248) A .hrl file does not need to have a -module definition. Additionally, it is common to have unused elements in such a file, as the entities will be used in a file including the header. * Address change requests to Erlang linter
2017-01-19REVERT "Fix some naming conventions and use abort for all Rust functions, ↵w0rp
and disable the rust linters for now, re #256" This reverts commit f412b4f96fa49f4ed856db25c10bdf4b9c2e4cec. Conflicts: doc/ale.txt
2017-01-15Document the mypy options, and fix spacing issues, largely in the documentationw0rp
2017-01-15Merge pull request #237 from keith/ks/mypy-linterw0rp
Add python mypy support
2017-01-15Support C# linting with mono compiler mcs. (#250)Junfeng Li
* Support netcore project linting. * Support check on the fly. * Remove debug. * Rename csc.vim to mcs.vim as it should be. * Update README. * Update doc. * Using `=~#` instead of `=~`.
2017-01-13Fix some naming conventions and use abort for all Rust functions, and ↵w0rp
disable the rust linters for now, re #256
2017-01-12Add support for Rust using rustc and cargo (#230)EinfachToll
* Add rustc checker for rust files * Add documentation for rustc * Use a nice helper function * Add cargo as linter * Complete the doc for rust linters * Put l: in front of every local variable * Apply the requested stylistic changes
2017-01-04Added hack linter for php (#239)Zefei Xuan
* added hack linter * updated docs for hack (hh_client) * naming
2017-01-04Fix #238 Make the README show the proper linter name for Floww0rp
2016-12-30Add python mypy supportKeith Smiley
This adds support for the official optional python typechecker.
2016-12-22add go build for build errors (#180)dzhou121
* add go build for build errors * Add go build to doc and README * Improvement for Go build Go build works on package level, so copy over the other files that belong to the same package to the temp folder as well. * revert back to simple go build * change gobuild script var name