Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-11 | Fix #330 - Explain how to check JSX with eslint and stylelint | w0rp | |
2017-02-11 | Fix filename substitution, especially on Windows | w0rp | |
2017-02-11 | Replace every stdin-wrapper script with the new %t formatting support | w0rp | |
2017-02-11 | Fix Pug linting | w0rp | |
2017-02-11 | Use writefile() for temporary files, which works better | w0rp | |
2017-02-11 | Add support for temporary filename substitution, for replacing stdin_wrapper | w0rp | |
2017-02-11 | Add support for managing temporary files/directories | w0rp | |
2017-02-11 | Merge pull request #329 from tomotanakamura/AddClangToCpp | w0rp | |
Add clang to cpp linters. | |||
2017-02-11 | Add clang to cpp linters. | tomotanakamura | |
2017-02-11 | Try and fix Travis builds again | w0rp | |
2017-02-11 | Fix #116 - Send SIGKILL to processes if they don't respond to SIGTERM | w0rp | |
2017-02-10 | Document the command empty string behaviour | w0rp | |
2017-02-10 | Fix #246 Don't run flow if there's no .flowconfig | w0rp | |
2017-02-10 | Fix #283 Add an option for using ch_sendraw(), which can be better for some ↵ | w0rp | |
users | |||
2017-02-10 | Fix #269 Set $TMPDIR to a default value, if not set | w0rp | |
2017-02-10 | Merge pull request #327 from jparise/credo-stdin-filename | w0rp | |
Pass the buffer's filename to Credo | |||
2017-02-09 | Pass the buffer's filename to Credo | Jon Parise | |
By default, Credo attributes input from STDIN as though it came from a file named `stdin`. This change passes the buffer's filename, too, so that Credo can use that information when applying its configuration. This is a nice improvement because files like `mix.exs` are normally excluded from Credo-based linting. Previously, ALE would show lint warnings for those files as they were edited. Now, they are correctly honor the Credo configuration and don't produce lint output. | |||
2017-02-09 | Fix #315 Implement the read_buffer option | w0rp | |
2017-02-09 | Make ALE complain when conflicting command options are used | w0rp | |
2017-02-09 | Don't export the custom-checks script in archives | w0rp | |
2017-02-09 | Merge pull request #306 from ahmedelgabri/standardjs | w0rp | |
Add standard linter | |||
2017-02-09 | add xo support (#304) | Daniel Lupu | |
* add xo support * add documentation * Fix a screw up when fixing conflicts * Fix it harder | |||
2017-02-09 | add ALEToggle command (#303) | Daniel Lupu | |
* add ALEToggle command * stop active jobs when toggled off * small logic cleanup & ensure ale can be ran manually while toggled off | |||
2017-02-09 | Merge pull request #295 from metakirby5/pr/coffeelint-local | w0rp | |
Add support for locally installed coffee and coffeelint | |||
2017-02-09 | Merge pull request #285 from medains/master | w0rp | |
Linter addition of PHP Mess Detector | |||
2017-02-09 | Document the command_chain optionv1.1.0 | w0rp | |
2017-02-09 | Revert "Add a Batch stdin wrapper script" | w0rp | |
This reverts commit 76a03b07099ec32135be4c7d9a7283343972b0af. | |||
2017-02-08 | Make some corrections in the README | w0rp | |
2017-02-08 | #314 Use the quickfix list for jumping between errors if that is set instead ↵ | w0rp | |
of the loclist | |||
2017-02-08 | #39 Don't send the Vim buffer to commands before the last in a chain | w0rp | |
2017-02-07 | Add a test to cover sign placement after linting | w0rp | |
2017-02-07 | Cover the Rust handler with some tests | w0rp | |
2017-02-07 | try fixing go build (#297) | Joshua Rubin | |
* try fixing go build * cache some system calls * fix /dev/null * use chained commands, use `go test -c` instead of `go tool compile` * fix some unescaped shell commands * fix a bug with explicitly setting GOPATH * implement changes requested in code review. handle errors from multiple files. fix issue when starting a new package * run `go env` as a job * ensure all functions return the proper type * fix loclist line numbers in some cases * remove multibuffer support for now | |||
2017-02-07 | #256 Attempt to fix Rust linter issues again | w0rp | |
2017-02-07 | #256 Attempt to fix Rust linter issues | w0rp | |
2017-02-06 | #289 Only use the --stdin-display-name flag if the flake8 version supports it | w0rp | |
2017-02-06 | Merge pull request #307 from yous/rubocop-comment | w0rp | |
Update comments for RuboCop pattern | |||
2017-02-06 | Merge pull request #305 from notkild/master | w0rp | |
Fix rust linting with cargo when multiple targets are present | |||
2017-02-06 | Fix rust linting with cargo when multiple targets are present | notkild | |
2017-02-06 | Update comments for RuboCop pattern | Chayoung You | |
2017-02-05 | Take the rubocop filename from the buffer number given to the function | w0rp | |
2017-02-05 | Merge pull request #299 from derekprior/dp-fix-rubocop-again | w0rp | |
Fix Rubocop filename handling | |||
2017-02-05 | Add standard linter | Ahmed El Gabri | |
2017-02-05 | Merge pull request #294 from tpict/master | w0rp | |
Add vint support for Neovim commands | |||
2017-02-05 | Update the contributing guide to offer some more advice | w0rp | |
2017-02-05 | Make a note in the FAQ about how to use quickfix errors | w0rp | |
2017-02-04 | Fix mypy error parsing when column numbers are included. | w0rp | |
2017-02-04 | Fix #124 Finish implementing command chaining, and make it work for DMD | w0rp | |
2017-02-03 | Fix Rubocop filename handling | Derek Prior | |
In my previous change, I updated the Rubocop linter to pass the filename to Rubocop. This change was tested on a file I expected Rubocop to ignore and the experience in vim was as I expected. However, I soon found that ALE wasn't finding errors in files that should not be ignored. After investigation, I found a few issues that this commit fixes: 1. We were not properly passing the current filename. We now use `expand` to get the filename. 2. The regular expression used in the callback was expecting the static value of `_` for the filename in output. We now use a looser regular expression that begins matching on the first `:`. 3. The linter was defined statically. By using the current filename when defining the command the linter would always use the filename of the first Ruby file the user opened. We now use a `command_callback` to inject the proper filename. I tested these changes on a configuration with included and excluded files and found it to work as I expected. Apologies for the earlier incorrect change. | |||
2017-02-02 | add support for locally installed coffee | Ethan Chan | |