Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-11 | Teach ALE about cargo features and add some configuration options | Ivan Petkov | |
* When working on rust/cargo projects of varying sizes, it may be useful to either build all possible features (i.e. lint all possible conditionally compiled code), or even turn off other features for a quicker edit-lint cycle (e.g. for large projects with large build times) * Added a g:ale_rust_cargo_default_feature_behavior flag for instructing cargo to not build any features at all (via `--no-default-features`), building default features (via no extra flags), or building all possible features (via `--all-features`) * Also added a g:ale_rust_cargo_include_features flag for including arbitrary features to be checked by cargo. When coupled with g:ale_rust_cargo_default_feature_behavior this allows for full customization of what features are checked and which ones are ignored | |||
2017-12-19 | Fix #1031 - Make the rust flags configurable | w0rp | |
2017-12-07 | Fix #1202 - Do not use --all-targets by default, because it doesn't work ↵ | w0rp | |
some of the time. | |||
2017-11-26 | Fix #1166 - Add an option for the rls toolchain | w0rp | |
2017-11-09 | Simplfy semver handling and share the semver version cache across everything | w0rp | |
2017-11-05 | Fix #626 - Automatically use `cargo check` and `cargo check --all-targets` ↵ | w0rp | |
for cargo versions that are new enough | |||
2017-10-26 | Fix #1045 - Handle both output streams for Cargo | w0rp | |
2017-08-11 | Ban !=# and !=? from the codebase | w0rp | |
2017-08-02 | Cover the Rust LSP with tests, allow LSP linters to be named anything, and ↵ | w0rp | |
rename the Rust LSP linter to `rls` | |||
2017-07-30 | #517 - Get the Rust language server working in a basic way | w0rp | |
2017-04-17 | Move path functions to their own file | w0rp | |
2017-04-16 | #427 Implement buffer variable overrides for all linter options | w0rp | |
2017-03-29 | Use the lint_file option so the Cargo linter will only be run against files ↵ | w0rp | |
on disk | |||
2017-03-27 | Make cargo linter lighter: (#408) | Idan Arye | |
- Use `cargo check` instead of `cargo build` when `g:ale_rust_cargo_use_check` is truish. - Use `--frozen` to avoid locking the project. | |||
2017-02-07 | Cover the Rust handler with some tests | w0rp | |
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 | Fix rust linting with cargo when multiple targets are present | notkild | |
2017-01-22 | Add a script for custom checks to enforce using the abort flag for functions ↵ | w0rp | |
and trailing whitespace, and fix existing issues. | |||
2017-01-19 | REVERT "Fix some naming conventions and use abort for all Rust functions, ↵ | w0rp | |
and disable the rust linters for now, re #256" This reverts commit f412b4f96fa49f4ed856db25c10bdf4b9c2e4cec. Conflicts: doc/ale.txt | |||
2017-01-13 | Fix some naming conventions and use abort for all Rust functions, and ↵ | w0rp | |
disable the rust linters for now, re #256 | |||
2017-01-12 | Add support for Rust using rustc and cargo (#230) | EinfachToll | |
* Add rustc checker for rust files * Add documentation for rustc * Use a nice helper function * Add cargo as linter * Complete the doc for rust linters * Put l: in front of every local variable * Apply the requested stylistic changes |