Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-26 | Fix #1051 - Support ash and dash for shellcheck and the sh linter | w0rp | |
2017-10-26 | Fix #1048 - Do not lint files named "." | w0rp | |
2017-10-26 | Merge pull request #1052 from natw/tflint-no-stdin | w0rp | |
don't use stdin with tflint | |||
2017-10-26 | don't use stdin with tflint | Nathaniel Williams | |
2017-10-26 | Add tflint fot Terraform | Nathaniel Williams | |
2017-10-26 | Merge pull request #1009 from sirbrillig/add/phpcs-include-code-option | w0rp | |
phpcs: include sniff code in message | |||
2017-10-26 | Add test for phpcs error code | Payton Swick | |
2017-10-26 | Include sniff code in message | Payton Swick | |
2017-10-26 | #1049 Do not modify runtimepath if the conflict warnings are disabled | w0rp | |
2017-10-26 | Fix #1045 - Handle both output streams for Cargo | w0rp | |
2017-10-26 | Fix #491 - Use -x for shellcheck for checking files with sourced files | w0rp | |
2017-10-26 | Remove redundant code for the GCC handler, and fix bugs with errors for - ↵ | w0rp | |
not being parsed | |||
2017-10-25 | Fix an exception with notes with no previous message | w0rp | |
2017-10-25 | Fix indentation for the haml-lint file | w0rp | |
2017-10-25 | Merge pull request #1047 from thenoseman/linter-hamllint_autodetect_config | w0rp | |
[PR: hamllint] auto-detect .rubocop.yml and .haml-lint.yml when using haml-lint | |||
2017-10-25 | Make one of the sign tests work in all locales | w0rp | |
2017-10-25 | Handle multiple files localtion lists with gcc handler (#1034) | Gerry Agbobada | |
Handle multiple files in the GCC handler. | |||
2017-10-25 | force add test fixtures for hamllint | Frank Schumacher | |
2017-10-25 | auto-detect .rubocop.yml and .haml-lint.yml | Frank Schumacher | |
Based on path to current file | |||
2017-10-25 | Make the sign placement test pass more often by using another shell | w0rp | |
2017-10-25 | Make the highlight placement test pass more often by using another shell | w0rp | |
2017-10-25 | Set better highlights for write-good | w0rp | |
2017-10-25 | Merge pull request #1044 from sumnerevans/mail-linters | w0rp | |
#955 Add vale linter for mail files | |||
2017-10-25 | Fix the write-good tests on Windows | w0rp | |
2017-10-25 | Fix #643 - Add support for write-good for many languages | Sumner Evans | |
2017-10-24 | #955 add documentation | Sumner Evans | |
2017-10-24 | #995 add vale linter for mail files | Sumner Evans | |
2017-10-24 | Merge branch 'aurieh-master' | w0rp | |
2017-10-24 | example for 'rcfile' on ale_python_pylint_options | Su Shangjun | |
Two hyphens instead of one will enable the option `rcfile`. | |||
2017-10-25 | Add Vader tests | aurieh | |
2017-10-24 | proselint for mail files (#1037) | Christopher Swingley | |
Add proselint for mail files | |||
2017-10-24 | Merge pull request #1030 from grddev/run-tests-osx | w0rp | |
Update test scripts to work on OS X | |||
2017-10-24 | adds fixer support for hfmt (#1027) | Zack Kourouma | |
Add support for fixing Haskell with hfmt | |||
2017-10-24 | Add phan as a linter for php files (#1026) | Diego Oliveira | |
Add phan for checking PHP code | |||
2017-10-24 | Merge pull request #1025 from kfox/add-rustfmt-fixer | w0rp | |
add rustfmt fixer | |||
2017-10-24 | Merge pull request #1017 from carakan/elixir_format | w0rp | |
`mix format` new fixer for elixir lang | |||
2017-10-24 | Merge pull request #1043 from fengdasuk19/fengdasuk19-pylint-rcfile | w0rp | |
example for 'rcfile' on ale_python_pylint_options | |||
2017-10-24 | example for 'rcfile' on ale_python_pylint_options | Su Shangjun | |
Two hyphens instead of one will enable the option `rcfile`. | |||
2017-10-24 | Update doc/ale.txt & README.md | aurieh | |
2017-10-24 | Add checkmake (resolves #866) | aurieh | |
2017-10-23 | Add a badge for AppVeyor, and remove some trailing spaces from the READMEv1.6.0 | w0rp | |
2017-10-23 | Get all tests to pass on Windows | w0rp | |
2017-10-23 | Get more of the tests to pass on Windows | w0rp | |
2017-10-22 | add basic documentation for elixir mix | Carlos Ramos | |
2017-10-22 | fix test's and delete unused code | Carlos Ramos | |
2017-10-22 | new fixer elixir mix format | Carlos Ramos | |
(only available in elixir > 1.6) | |||
2017-10-22 | Merge pull request #1032 from diegoholiveira/tests_phpmd | w0rp | |
Fix the regex of phpmd | |||
2017-10-22 | Fix the regex of phpmd | Diego Oliveira | |
2017-10-22 | Merge pull request #1022 from 0x6a62/fix-typos | w0rp | |
Fix typo | |||
2017-10-22 | Update test scripts to work on OS X | Gustav Munkby | |
There were a couple of issues - `paste` requires a file argument - `mktemp` requires a pattern argument - `sort` doesn't support `-h`, but `-n` is enough for sorting on numbers, and `-s` was introduced to perform a stable sort instead. The main issues were that BSD `sed` does not support: - Alternation (`\|`) - solved by splitting to multiple patterns - Bound shortcuts (`x\+`, `x\?`) - solved by replacing with `xx*` and `x\{0,1\}` respectively - Lower-casing (`\L`) - solved by piping through `tr` instead (this will lowercase everything and not only the integration names, but I assumed that wasn't too much of an issue, as a portable alternative for the selective downcasing would be much more involved). |