Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-03 | Merge pull request #1964 from dlresende/master | w0rp | |
Fix PMD not working with classes without package | |||
2018-10-02 | Fix PMD not working with classes without package | Diego Lemos | |
PMD is currently not working properly for Java classes that use [unnamed packages](https://docs.oracle.com/javase/specs/jls/se11/html/jls-7.html#jls-7.4.2). Consider the following Java class that does not contain a `package` declaration: ```java public class App { String getGreeting() { return "Hello world."; } static void main(String... args) { System.out.println(new App().getGreeting()); } } ``` Running PMD in the command line agaist the Java class above produces an output with empty string `""` in the `"Package"` column: ```sh $ pmd -R category/java/bestpractices.xml -f csv -d './src/main/java/App.java' Oct 02, 2018 9:10:39 PM net.sourceforge.pmd.PMD processFiles WARNING: This analysis could be faster, please consider using Incremental Analysis: https://pmd.github.io/pmd-6.7.0/pmd_userdocs_incremental_analysis.html "Problem","Package","File","Priority","Line","Description","Rule set","Rule" "1","","/Users/diego/Projects/github.com/dlresende/kata-fizz-buzz/src/main/java/App.java","2","7","System.out.println is used","Best Practices","SystemPrintln" ``` But the pmd.vim handler's current pattern refuses everything coming from a Java class that does not have a package name (2nd column): ```vim let l:pattern = '"\(\d\+\)",".\+","\(.\+\)","\(\d\+\)","\(\d\+\)","\(.\+\)","\(.\+\)","\(.\+\)"$' ``` The solution I am proposing is to also accept empty strings as package names. | |||
2018-10-02 | Update the bug reporting template | w0rp | |
2018-10-02 | Encourage people to write tests even more | w0rp | |
2018-09-29 | Merge pull request #1955 from eborden/eborden/mising_hlint_executable_var | w0rp | |
Remove test vars that cover bug | |||
2018-09-28 | Add Perl6 support via 'perl6 -c' | Travis Gibson | |
2018-09-28 | Set global vars in hlint linter file. | Evan Rutledge Borden | |
2018-09-28 | Remove test vars that cover bug | Evan Rutledge Borden | |
These test vars were covering up a bug in the hlint linter implementation. Without these vars we can see the behavior that is exhibited in `vim` proper. | |||
2018-09-28 | Add better support for Haskell stack compiler tools (#1851) | Evan Borden | |
* Add better support for Haskell stack compiler tools This commit adds support for `stack` as the executable of a tool. This follows a pattern that has been implemented for `bundler`'s tool chain. * Move hlint command to linter file * Add vader test for stack exec handling * Update ghc-mod to support stack execution `ghc-mod` was previously broken into 2 linters. 1. ghc_mod 2. stack_ghc_mod This additional linter is not necessary with proper support for executable variables and `stack exec` handling. * Support stack exec in hfmt * Support stack in hdevtools | |||
2018-09-28 | Merge pull request #1950 from yejingchen/ccls | w0rp | |
Add ccls support for C/C++/ObjC | |||
2018-09-28 | Move ccls functions to autoload/ale/handler | Ye Jingchen | |
Tests are kept as-is. | |||
2018-09-27 | Merge pull request #1917 from jpsouzasilva/fix-stylelint-scss | w0rp | |
Support options when using Stylelint with SCSS | |||
2018-09-27 | Add psalm linter for PHP (#1893) | Richard Marmorstein | |
2018-09-26 | Add missing files for ccls test | Ye Jingchen | |
2018-09-26 | Add ccls tests | Ye Jingchen | |
2018-09-26 | Merge pull request #1908 from KtorZ/master | w0rp | |
Allow extra options to be passed to haskell:hlint | |||
2018-09-26 | Add ccls support for C/C++/ObjC | Ye Jingchen | |
2018-09-25 | #1941 Explain how to alleviate a timeoutlen Vim bug by changing settingsv2.2.0 | w0rp | |
2018-09-25 | Bugfix: python add blank lines (#1944) | Bert JW Regeer | |
* Don't add newlines when not a control statement for Python * Add test for accidental newline fix * Add docstring detection to avoid adding unnecessarily newlines * Add tests for docstring detection | |||
2018-09-20 | Merge pull request #1932 from rhysd/shfmt-default-indent | w0rp | |
shfmt: Use Vim's indent config as default indent width | |||
2018-09-20 | Merge pull request #1939 from elebow/fix-typo-solargraph-docs | w0rp | |
Fix typo in Solargraph documentation | |||
2018-09-20 | Fix #1938 - Set a default value for an undefined variable | w0rp | |
2018-09-19 | Fix typo in Solargraph documentation | Eddie Lebow | |
2018-09-19 | Merge pull request #1719 from elebow/auto-pipenv-option-for-python-linters | w0rp | |
Add python_[linter]_auto_pipenv options for python linters (fixes #1656) | |||
2018-09-19 | Add fixer for Go modules (#1873) | Martin Tournoij | |
* Add fixer for Go modules | |||
2018-09-19 | #1872 Remove extra carriage returns when fixing files on Windows | w0rp | |
2018-09-19 | Merge pull request #1937 from danielwe/master | w0rp | |
Support both old (<0.7) and new Julia versions | |||
2018-09-19 | Support both old (<0.7) and new Julia versions | Daniel Wennberg | |
Closes #1931 | |||
2018-09-19 | Merge pull request #1924 from fenuks/prospector-url-fix | w0rp | |
Update prospector tool URL | |||
2018-09-19 | Merge pull request #1926 from gnustomp/master | w0rp | |
c#ParseCFlags: don't index empty list | |||
2018-09-19 | Merge pull request #1934 from meunierd/solargraph-stdio | w0rp | |
Support Solargraph stdio | |||
2018-09-18 | Merge pull request #1928 from felipesere/master | w0rp | |
To avoid blocking build tools, suspend ALE when suspending vim | |||
2018-09-18 | Stop tsserver from causing errors to be rendered redundantly | w0rp | |
2018-09-18 | Solargraph stdio | Devon Meunier | |
2018-09-18 | shfmt: Use Vim's indent config as default indent width | rhysd | |
2018-09-18 | Add command_callback tests to cover hlint config variables | KtorZ | |
2018-09-18 | Define custom vim global variables to pass options to hlint | KtorZ | |
2018-09-18 | add test for arguments with '--' | James Ye | |
2018-09-17 | Test that we CleanupEveryBuffer when vim supports it | Felipe Sere | |
2018-09-17 | Handle failing to connect to eslint_d | w0rp | |
2018-09-17 | Join the ALECleanupGroup and ensure we don't run cleanup if ale.vim isn't loaded | Felipe Sere | |
2018-09-17 | Merge pull request #1927 from jparise/thrift-includes-default | w0rp | |
thrift: default thrift_thrift_includes to ['.'] | |||
2018-09-17 | #1794 - Handle LSP documentation content as a Dictionary | w0rp | |
2018-09-17 | Merge pull request #1925 from elebow/fix-markdown-error-in-readme-solargraph | w0rp | |
Fix markdown error in README solargraph entry | |||
2018-09-17 | Fix the Julia languagserver linter for Julia 0.7 | w0rp | |
2018-09-16 | thrift: default thrift_thrift_includes to ['.'] | Jon Parise | |
In a lint context, it's useful to assume that included files sit next to the current file by default. Users can still further customize this configuration variable to add more include paths. | |||
2018-09-16 | To avoid blocking build tools, suspend ALE when suspending vim | Felipe Sere | |
2018-09-16 | c#ParseCFlags: don't index empty list | James Ye | |
2018-09-15 | Fix markdown error in README solargraph entry | Eddie Lebow | |
2018-09-15 | Add `python_auto_pipenv` config var for all python linters. | Eddie Lebow | |
This allows a user to set one variable instead of eight. |