Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-22 | fixers/xo: refactor to handlers | Charles B Johnson | |
2021-01-22 | fixers/xo: add tests | Charles B Johnson | |
2021-01-22 | linters/xo: consolidate xo linters | Charles B Johnson | |
2021-01-23 | update doc with snake cased linter name | Atsuya Takagi | |
2021-01-23 | use snake case for linter name | Atsuya Takagi | |
2021-01-23 | Merge pull request #2782 from hsanson/2777-add-ibm-openapi-validator | Horacio Sanson | |
Fix 2777 - Add IBM openapi validator | |||
2021-01-23 | document the variables can be set for the linter | Atsuya Takagi | |
2021-01-23 | decide whether or not to run with config file based on the presence of ↵ | Atsuya Takagi | |
config filename value | |||
2021-01-23 | allow setting vala-lint executable | Atsuya Takagi | |
2021-01-23 | add a blank line before if statement | Atsuya Takagi | |
2021-01-23 | add Vala-Lint as supported linter | Atsuya Takagi | |
2021-01-23 | add test to check if it properly ignores outputs with unknown error types | Atsuya Takagi | |
2021-01-23 | add documentation for vala-lint | Atsuya Takagi | |
2021-01-23 | use ale#Set for setting default config variable values | Atsuya Takagi | |
2021-01-23 | support flags for enable/disable config | Atsuya Takagi | |
2021-01-23 | expect warn or error | Atsuya Takagi | |
2021-01-23 | find and use vala-lint config if exists | Atsuya Takagi | |
2021-01-23 | use the correct regex to match the escape sequences... | Atsuya Takagi | |
2021-01-23 | fix the wrong variable name | Atsuya Takagi | |
2021-01-23 | escape color sequences | Atsuya Takagi | |
2021-01-23 | test my hypotethis | Atsuya Takagi | |
2021-01-23 | specify a filename of the current buffer | Atsuya Takagi | |
2021-01-23 | be precise about output_stream | Atsuya Takagi | |
2021-01-23 | add initial files | Atsuya Takagi | |
2021-01-22 | Fix linter error | Horacio Sanson | |
2021-01-22 | Fix clang-tidy ignoring compile_commands.json | fenuks | |
2021-01-22 | Improve documentation | Horacio Sanson | |
2021-01-22 | Add yamllint and prettier to openapi. | Horacio Sanson | |
This commit enables yamllint and prettier on openapi files. | |||
2021-01-22 | Fix 2777 - Add IBM openapi validator | Horacio Sanson | |
2021-01-22 | Update tests | Horacio Sanson | |
2021-01-22 | Fix 3498 - Change standardrb fixer to read from stdin. | Horacio Sanson | |
Seems standardrb fails to properly use the --config option when using temporary files but works fine when reading from stdin. This commit changes the fixer so it uses stdin instead of temporary files. | |||
2021-01-22 | Fix 354 - Migrate CI from travis to Github Actions (#3549) | Horacio Sanson | |
* Fix 354 - Migrate CI from travis to Github Actions * Use matrix strategy for parallel tests * Don't build image on each run * Add push trigger on tags Co-authored-by: Horacio Sanson <horacio@allm.inc> | |||
2021-01-22 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2021-01-20 | prolog/swipl: cover new format with complex tests | Horacio Sanson | |
https://github.com/dense-analysis/ale/pull/3377#issuecomment-763628447 | |||
2021-01-20 | prolog/swipl: simplify with @hsanson's suggestions | Horacio Sanson | |
https://github.com/dense-analysis/ale/pull/3377#issuecomment-763628447 | |||
2021-01-20 | Merge pull request #3261 from toastal/dhall | Horacio Sanson | |
Enhanced Dhall fixer support | |||
2021-01-20 | Merge pull request #3475 from benknoble/dafny-include-timeouts | Horacio Sanson | |
dafny: add a timeLimit option and message-parsing | |||
2021-01-20 | Merge pull request #3453 from blinsay/blinsay/rust-analyzer-lsp | Horacio Sanson | |
pass lsp intialization_options to rust-analyzer | |||
2021-01-20 | Merge pull request #3430 from mbrunnen/mbn/fix-macros-include-c-flag | Horacio Sanson | |
Add -imacros to C flags | |||
2021-01-20 | Merge pull request #3362 from daliusd/tsserver_hints | Horacio Sanson | |
Show tsserver hints/suggestions in Ale. | |||
2021-01-20 | Merge pull request #3455 from Thau/feat/credo_config_file | Horacio Sanson | |
feat: Adds variable to use custom config file with Elixir Credo | |||
2021-01-16 | Merge pull request #3485 from andreaconti/master | Horacio Sanson | |
Fix Julia Language Server Support | |||
2021-01-15 | Merge pull request #3234 from hsanson/3233-enable-ktlint-fixer-for-kotlin-files | Horacio Sanson | |
Enable ktlint fixer for kotlin files. | |||
2021-01-15 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2021-01-14 | Merge pull request #3535 from dense-analysis/revert-3358-master | w0rp | |
Revert "Improves fixer performance for large buffers" | |||
2021-01-14 | Update the Docker image; fix an error | w0rp | |
2021-01-14 | Merge pull request #3471 from kevinclark/3448-fix-unittests | w0rp | |
Make test/scripts/custom-checks portable | |||
2021-01-14 | Add nvim floating window support (replaces #3314) (#3470) | Kevin Clark | |
* Add nvim floating window hover support * Add configuration for float to replace preview * preview#ShowFloating: qualify local variables * Configure floating preview usecases individually Also: * Extract floating preview to its own file. * Ignore 'stay_here' option. Moving into the floating preview window seems confusing at best. * Re-use existing floating preview window if it's still up. * Flush out floating preview documentation. * Watch cursor position changes per window Floating previews open a new window, so when that window is written to, it moves briefly there at a different position than the original window. This makes repeated positions detected when positions are tracked at a s: level. Instead, we change the variable to window scoped, which only fires a message if the cursor has changed from the last position in *that window*. * g:ale_floating_preview cleanup * floating_preview: add ALEDetail tests * Fix fecs test missing runtime call * Add ALEHover floating preview tests Co-authored-by: Jan-Grimo Sobez <jan-grimo.sobez@phys.chem.ethz.ch> | |||
2021-01-13 | Merge pull request #3494 from YorickPeterse/master | Horacio Sanson | |
Add linter for Inko | |||
2021-01-13 | Merge pull request #3482 from liskin/lsp-popup-menu-fix | Horacio Sanson | |
codefix: Fix LSP MenuCallback invocation (E119, not enough args) |