summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2020-09-09Bump the ALE version to 3.0.0v3.0.0w0rp
2020-09-09Close #2522 - Check pylint on the flyw0rp
Newer versions of pylint will now check your code as you type. Older versions will still only check the file on disk. Co-authored-by: Oliver Wiegers <oliver.wiegers@gmail.com>
2020-09-09Add tests for covering the coming Vint versionw0rp
2020-09-08Close #3003 - Show ignored linters in :ALEInfow0rp
2020-09-08Close #3333 - Add an ALECompletePost eventw0rp
Add an `ALECompletePost` event along with everything needed to make it useful for its primary purpose: fixing code after inserting completions. * `ALEFix` can now be called with a bang (`!`) to suppress errors. * A new `ALELintStop` command lets you stop linting, and start it later.
2020-09-06Close #3268 - Implement :ALEImportw0rp
A new command, `:ALEImport`, has been added, which lets you import words at your cursor if a completion provider can provide a completion for that word which includes some additional text changes.
2020-09-05Fix #3183 - Escape filename characters from LSP/tsserverw0rp
2020-09-05Clean up embertemplatelint codew0rp
Alias ember-template-lint to embertemplatelint so users can use either string to enable the linter.
2020-09-04Fix #3322 - Apply rename changes correctlyw0rp
2020-08-31feat(template-lint): Read from stdin (#2622)Cyrille David
* ember-template-lint: Lint from stdin * This feature has recently been implemented in ember-template-lint. * Refactor ember-template-lint executable * Fallback on a temporary file for old template-lint Co-authored-by: w0rp <w0rp@users.noreply.github.com>
2020-08-31Fix flake8 cd logic for invalid optionsw0rp
2020-08-31Add tests for \r removalw0rp
2020-08-30Run flake8 from project root by default.Konstantin Alekseev
Option `per-file-ignores` was introduced in flake8 version 3.7.0. It allows to ignore specific errors in specific files using glob syntax. For example `per-file-ignores = src/generated/*.py:F401` will ignore `F401` error in all python files in `src/generated`. Thus ale has to run flake8 from project root where .flake8 config is placed otherwise glob won't match linted file.
2020-08-29Merge pull request #3194 from maxwell-k/vintw0rp
vim/vint: show policy name
2020-08-29Fix retrying on some test failuresw0rp
2020-08-29Fix psalm options. Retry on some test failuresw0rp
2020-08-29Fix #3247 - Use --always-make for make -n by defaultw0rp
2020-08-29Improved macro handling in gccKimplul
2020-08-29typow0rp
2020-08-29#3319 - Try to modify buffers later for ALEFixw0rp
2020-08-28Close #3325 - Apply new formatting where possiblew0rp
2020-08-28#3325 - ale#path#BufferCdString now generates %s:hw0rp
2020-08-28Close #3285 - lint_file is now dynamicw0rp
`lint_file` can now be computed dynamically with a callback function, which can return a deferred result, as per `ale#command#Run`. This allows linters to dynamically switch between checking files on disk, or checking code on the fly. Some tests have been fixed on Windows.
2020-08-28Close #3309 - Add b:ale_lint_delayw0rp
2020-08-28Merge pull request #2988 from joereynolds/masterw0rp
Add sql-lint as linter
2020-08-28#3324 - Enable rls by defaultw0rp
2020-08-28Set prettier working directory to where .prettierignore is (#3101)Sorin Iclanzan
Prettier does not use `.prettierignore` unless the current directory is the root where the `.prettierignore` file resides. * Update Prettier tests * Look for prettierignore to determine project root
2020-08-27Fix #3318 - Escape macros when parsing C flagsw0rp
2020-08-27Fix C flag parsing and tests on Windowsw0rp
2020-08-27#3318 Refactor C flag parsing to set up for quoting argumentsw0rp
2020-08-27Merge pull request #3310 from pbrisbin/masterw0rp
Add dhall-format as a Fixer
2020-08-27Label the test cases more clearlyw0rp
2020-08-27Fix #3317 - Parse -include from C flagsw0rp
2020-08-27Fix #3316 - Repeat -relative for ALERepeatSelectionw0rp
2020-08-27Fix #3307 - Handle compile_commands paths betterw0rp
ALE now converts paths from compile_commands.json files into absolute paths and prefers matching against absolute file and directory names for determining which flags to use for files. As a result, parsing compile_commands.json to determine flags should work for a lot more C and C++ projects.
2020-08-27#3312 - Just check if additionalTextEdits is non-emptyw0rp
2020-08-27Fix #3312 - Fix a false positive for auto importsw0rp
ALE was incorrectly detecting completion results from servers such as rust-analyzer as wanting to add import lines when additionalTextEdits was present, but empty. Now ALE only filters out completion results if the autoimport setting is off, and one of the additionalTextEdits starts on some line other than the current line. If any additionalTextEdits happen to be identical to the change from completion anyway, ALE will skip them.
2020-08-25Add dhall-format as a Fixerpatrick brisbin
https://github.com/dhall-lang/dhall-lang
2020-08-24#2556 - Support modifiers for formatted filenamesw0rp
2020-08-24Merge pull request #3302 from khaveesh/masterHoracio Sanson
latexindent: Run fixer from stdin instead of a temporary file
2020-08-23Yes, try again to fix Windows testsw0rp
2020-08-23Try to fix Windows tests againw0rp
2020-08-23Try to fix Windows testsw0rp
2020-08-23Close #2556 - Support filename mappingw0rp
ALE now supports mapping files between different systems for running linters and fixers with Docker, in virtual machines, in servers, etc.
2020-08-21Fixed testsKhaveesh N
2020-08-20#3299 Merge gcc and clang into a cc linterw0rp
Users can easily be confused when they set some options for a C or C++ compiler, and another compiler is run with different options, which still reports errors. To remedy this, the existing `gcc` and `clang` linters have been replaced with a `cc` linter that will run either compiler. This is a breaking change for ALE v3.0.0.
2020-08-20Keep -iframework if present in parsed C/C++ flags (#3057)awang
* Keep -iframework if present in parsed C/C++ flags * Add test to make sure -iframework is parsed Co-authored-by: Alex Wang <ts826848@gmail.com>
2020-08-19Fix #3200 - Do not use -fstack-usage from parsed flagsw0rp
2020-08-19#3056 Add tests for parsed C/C++ -std flag handlingw0rp
2020-08-19Merge pull request #3178 from sudobash1/expand_atw0rp
Fixes #3092 - Implement loading `@file` c arguments