Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-04 | Improve ALE project style checking | w0rp | |
* The project style linter now runs while you type. * Now the scripts for checking the project require blank lines. * Many style issues have been found and fixed. | |||
2018-07-25 | Switch to v:t_ variables for type checks | w0rp | |
2018-07-25 | Ignore a shellcheck warning for custom linting rules | w0rp | |
2018-07-24 | #1754 Require snake_case names for linters in the codebase | w0rp | |
2018-07-22 | Revert "Update the tests to check README.md in the new location" | w0rp | |
This reverts commit 6c10be8992b9a54e83bab58838c1553d36028c7e. | |||
2018-07-22 | Update the tests to check README.md in the new location | w0rp | |
2018-07-12 | Try to start the NeoVim 0.3 tests more times | w0rp | |
2018-07-12 | Fix #1716 - Replace tempdir() with a wrapper to preserve TMPDIR | w0rp | |
2018-07-03 | Automatically retry running Vader tests so Travis CI will fail less | w0rp | |
2018-06-28 | Get tests running and passing with NeoVim 0.2 and 0.3 | w0rp | |
2018-05-01 | Update run-tests to make use of /usr/bin/env (#1548) | Bjorn Neergaard | |
* Update run-tests to make use of /usr/bin/env * Update run-vint * Update run-vader-tests * Update custom-linting-rules * Update custom-checks * Update check-toc * Update check-supported-tools-tables | |||
2017-12-07 | Run tests in parallel | w0rp | |
2017-12-01 | Break up the rest of the test script code into smaller files | w0rp | |
2017-12-01 | Move the Bash code for running Vader tests to its own file | w0rp | |
2017-11-15 | Complain about stray echo lines in the codebase | w0rp | |
2017-10-25 | Fix #643 - Add support for write-good for many languages | Sumner Evans | |
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). | |||
2017-09-28 | Fix an issue with the check-supported-tools-tables script | w0rp | |
2017-09-12 | Ban getcwd() from the codebase, as it causes problems | w0rp | |
2017-09-11 | Require function! to be used instead of function | w0rp | |
2017-09-10 | Explain the table of contents script better, and simplify it a bit | w0rp | |
2017-09-10 | Fix numerous issues with integration documentation tags and the table of ↵ | w0rp | |
contents, and add a script to check for theses issues | |||
2017-09-10 | Move scripts for tests into the test directory, and do not export the Batch ↵ | w0rp | |
script for running tests |