summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-06Add support for pydocstyle linter (#2085)pmacosta
The linter can correctly parse pydocstyle output with any of the following command-line options enabled: --explain, --source, --debug, and/or --verbose
2018-12-06refactor sasslint linter (#2077)Oskar Grunning
Previous implementation required one to have sass-lint globally. This allows you to have it locally, override the executable and add options.
2018-12-05Merge pull request #2119 from hsanson/1994-fix-javalsp-supportw0rp
Fix javalsp command.
2018-12-05Fix javalsp command.Horacio Sanson
The command used to invoke the LSP process was being escaped wrong. Also added a new option to set a different java executable and fixed the documentation.
2018-12-04Merge pull request #2117 from gitter-badger/gitter-badgew0rp
Add a Gitter chat badge to README.md
2018-12-04Add Gitter badgeThe Gitter Badger
2018-12-04Make the suggestion about asking for help friendlierw0rp
2018-12-04Do not wrap bug report linesw0rp
2018-12-04Fix a mistake with a linkw0rp
2018-12-03Revert "Merge pull request #2083 from zackhsi/scalac-until-jvm"w0rp
This reverts commit 1c89495d771ec6518599bea83dd11a7c1d66ba73, reversing changes made to 4b4b09593b2b090282981d69a9647a3c91d1f8b9.
2018-12-03Typow0rp
2018-12-03Tell people to ask for tech support outside of GitHub issuesw0rp
2018-11-30Merge pull request #2110 from w0rp/lazy-clipboardv2.3.0Ryan
Optimize :ALEIntoToClipboard to only copy to clipboard once
2018-11-30Merge pull request #1734 from sridhars/masterRyan
Add language server source in ALEDetail
2018-11-29Merge branch 'master' into sridharsBjorn Neergaard
2018-11-29Add test for detail in lsp ReadDiagnosticsBjorn Neergaard
2018-11-29Use single quotes to satisfy vintBjorn Neergaard
2018-11-29Only set the unnamed register at the end of :ALEInfoToClipboardBjorn Neergaard
This fixes performance problems in Neovim, where every character results in spawning a new clipboard-tool process. Behaviour is not similarly pathological in Vim, but it still results in an unnecessary amount of register churn.
2018-11-28Merge pull request #2096 from mgedmin/flake8-uses-vcolsw0rp
flake8 reports visual columns
2018-11-26Merge pull request #2104 from andys8/patch-1w0rp
Readme: Links for tsserver and cargo
2018-11-25Readme: Links for tsserver and cargoAndy
2018-11-25Merge pull request #2103 from bfredl/nsw0rp
Don't hardcode the namespace id for virtual text
2018-11-25Fixing linter problemsw0rp
2018-11-25Don't hardcode the namespace id for virtual textBjörn Linse
This makes collisions with other plugins less likely.
2018-11-23php: change phpstan's --errorFormat to --error-format (#2005)lfree
* php: change phpstan's --errorFormat to --error-format * add version check to phpstan
2018-11-22Fix unit testsMarius Gedminas
2018-11-22flake8 reports visual columnsMarius Gedminas
Fixes #2092.
2018-11-21Merge pull request #2068 from m-pilia/ispcw0rp
Add linter for ispc
2018-11-21Add --nowrap to ispc optionsMartino Pilia
2018-11-19Merge pull request #2070 from meain/fixer-prettier-yamlw0rp
add yaml to registry for prettier
2018-11-19Fix #2084 - Disable mix by default, as it causes too many problemsw0rp
2018-11-19Merge pull request #2083 from zackhsi/scalac-until-jvmw0rp
Continue scalac compilation until just before bytecode generation
2018-11-19Merge pull request #2087 from m-pilia/adaw0rp
Add GCC linter for Ada
2018-11-18Add GCC linter for AdaMartino Pilia
2018-11-17Fix testZack Hsi
2018-11-17Merge pull request #1907 from guill/compile_commands_fixw0rp
Fix bug where last C compile flag was ignored
2018-11-17Fix bug where last c flag was ignoredJacob Segal
There is currently a check that tries to prevent c-flags that contain '-' in them from being unintentionally split and included in the list of commands. For example, we wouldn't want "-fno-exceptions " to appear as "-fno" and "-exceptions ". The way this check was done was by making sure the last character of the split string was a space. This meant that the very last option to appear in the compile command was ignored (as it doesn't end with a space). This fix explicitly skips the ends-with-space check on the last option in the command-line. This isn't the best fix. Really we should be using the same argument-processing rules as a shell would rather than just splitting on '-'. That's a much larger and more complicated change though.
2018-11-16Continue scalac compilation until just before bytecode generationZack Hsi
Previous behavior does not compile deep enough to surface errors. See compiler phases: https://docs.scala-lang.org/overviews/compiler-options/index.html#compilation-phases
2018-11-15Merge pull request #2079 from jeffkreeftmeijer/vale-asciidocw0rp
Add Vale linter for AsciiDoc
2018-11-14Add Vale linter for AsciiDocJeff Kreeftmeijer
Vale supports AsciiDoc. This patch adds a Vale linter for AsciiDoc files, which is based on the existing Markdown linter.
2018-11-14Add style highlights for virtualtext and document all of themw0rp
2018-11-14Add specific highlight groups for virtualtext (#2071)jamestthompson3
2018-11-12Merge pull request #2069 from meain/fixer-prettier-html-testsw0rp
add tests for prettier-html
2018-11-12add yaml to registry for prettierAbin Simon
2018-11-12add tests for prettier-htmlAbin Simon
2018-11-12Lint ispc on disk to solve include imprecisionsMartino Pilia
2018-11-11Add linter for ispcMartino Pilia
2018-11-11Merge pull request #2063 from languitar/better-checkstylew0rp
Checkstyle improvements
2018-11-11Merge pull request #2060 from meain/fixer-pretty-htmlw0rp
Add prettier to html formatters
2018-11-11Fix #2054 - Make golint configurablew0rp