summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2016-12-26Fixed a typo scss -> sassAlexander Luberg
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
2016-12-22[enhancement] add node_modules support for stylelint & htmlhint (#226)diartyz
* Add node_modules support for stylelint * add node_modules support for htmlhint * fix stdin * update doc about stylelint & htmlhint
2016-12-22Fix #229 Disable text linters by defaultw0rp
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-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-06Document the new stylelint linterw0rp
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-01Add options variable for ruby-rubocopPo Shan Cheah
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-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-10Document that typecheck is now supportedw0rp
2016-11-03Re-align documentation markers.w0rp
2016-11-02Update ale.txtMasahiro H
2016-11-02Fix docment for c-clangmshr-h
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-30Add pylint to the list of supported tools.w0rp
2016-10-30Update the documentation to match the codew0rp
2016-10-28Default stdin in htmlhint optionsdeathmaz
2016-10-27Added optoins variable for htmlhintdeathmaz
2016-10-26#144 - Implement commands for moving through warnings/errorsw0rp
2016-10-25Merge pull request #143 from w0rp/better-buffer-cleanupw0rp
Stop jobs when buffers close
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-24Merge everything into the one global map.w0rp
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-22Docs!Bjorn Neergaard
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-20Document ansible-lintBjorn 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-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-16Fix an issue with a duplicate section in the documentation.w0rp
2016-10-13Document ALELint autocommandBjorn Neergaard
2016-10-13add documentation for luacheck linters-ol
2016-10-11Fix #87 - Allow linter filetypes to be aliasedw0rp
2016-10-11Add the logo and thank Mark for his work.w0rp
2016-10-11Add new go linters to the helpBjorn Neergaard
2016-10-11Set an option for turning Vint style issues on or off.w0rp
2016-10-10add shellcheck option to the doc and sort options by theme (#85)Marc Delage
* add shellcheck options to the doc * sort option by theme * correct text for shellcheck option
2016-10-10First pass at optimizing ale to autoload (#80)Bjorn Neergaard
* First pass at optimizing ale to autoload First off, the structure/function names should be revised a bit, but I will wait for @w0rp's input before unifying the naming style. Second off, the docs probably need some more work, I just did some simple find-and-replace work. With that said, this pull brings major performance gains for ale. On my slowest system, fully loading ale and all its code takes around 150ms. I have moved all of ale's autoload-able code to autoload/, and in addition, implemented lazy-loading of linters. This brings load time on that same system down to 5ms. The only downside of lazy loading is that `g:ale_linters` cannot be changed at runtime; however, it also speeds up performance at runtime by simplfying the logic greatly. Please let me know what you think! Closes #59 * Address Travis/Vint errors For some reason, ale isn't running vint for me... * Incorporate feedback, make fixes Lazy-loading logic is much improved. * Add header comments; remove incorrect workaround * Remove unneeded plugin guards * Fix lazy-loading linter logic Set the wrong variable.... * Fix capitialization
2016-10-10Add an option for configuring the path for JSHint.w0rp
2016-10-10#74 - Document g:ale_buffer_loclist_mapw0rp
2016-10-10Correct some grammar in the docs.w0rp
2016-10-10Echo string format (#76)KabbAmine
* Implement an option to configure the echoed message, #48 Via `g:ale_echo_msg_format` where: - `%s` is the error message itself - `%linter%` is the linter name - `%severity` is the severity type e.g let g:ale_echo_msg_fomat = '[%linter%] [%severity%] %s' * Add new options for defining the string used for errors in echoed message `g:ale_echo_msg_error_str` and `g:ale_echo_msg_warning_str` * Change text output of some linters Now that the echoed message can be customized, no need to add the type to the text variable. * Update README & documentation file * Fix some typos * Sort the table of options alphabetically (except echo_msg_x_str options) * Added echo warning str option to the doc