Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | minor: fix typo | Aleksey Kladov | 2021-06-15 | 1 | -1/+1 |
| | |||||
* | internal: enforce no #[ignore] and no #[should_panic] | Aleksey Kladov | 2021-06-15 | 1 | -0/+31 |
| | |||||
* | internal: start new diagnostics API | Aleksey Kladov | 2021-06-13 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | At the moment, this moves only a single diagnostic, but the idea is reafactor the rest to use the same pattern. We are going to have a single file per diagnostic. This file will define diagnostics code, rendering range and fixes, if any. It'll also have all of the tests. This is similar to how we deal with assists. After we refactor all diagnostics to follow this pattern, we'll probably move them to a new `ide_diagnostics` crate. Not that we intentionally want to test all diagnostics on this layer, despite the fact that they are generally emitted in the guts on the compiler. Diagnostics care to much about the end presentation details/fixes to be worth-while "unit" testing. So, we'll unit-test only the primary output of compilation process (types and name res tables), and will use integrated UI tests for diagnostics. | ||||
* | internal: check that coverage marks are always paired | Aleksey Kladov | 2021-06-13 | 1 | -1/+48 |
| | |||||
* | Exclude `crates/ide_db/src/helpers/generated_lints.rs` from `tidy::check_todo` | Lukas Wirth | 2021-06-04 | 1 | -3/+5 |
| | |||||
* | Use push_str | Clemens Wasser | 2021-06-03 | 1 | -2/+2 |
| | |||||
* | Apply more clippy suggestions and update generated | Clemens Wasser | 2021-06-03 | 1 | -4/+4 |
| | |||||
* | tidy | Domantas Jadenkus | 2021-05-24 | 1 | -0/+1 |
| | |||||
* | Add last remaining module docstring | Florian Diebold | 2021-05-22 | 1 | -21/+2 |
| | |||||
* | Add even more docs | Aleksey Kladov | 2021-05-22 | 1 | -2/+2 |
| | |||||
* | Add more docs | Aleksey Kladov | 2021-05-22 | 1 | -12/+1 |
| | |||||
* | internal: scalable module structure for fixits | Aleksey Kladov | 2021-05-17 | 1 | -3/+2 |
| | |||||
* | Update license check | kjeremy | 2021-04-15 | 1 | -1/+1 |
| | |||||
* | a lot of clippy::style fixes | Matthias Krüger | 2021-03-21 | 1 | -1/+1 |
| | |||||
* | Remove now dead code | Aleksey Kladov | 2021-03-08 | 1 | -11/+14 |
| | |||||
* | Unused params | Aleksey Kladov | 2021-03-08 | 1 | -1/+1 |
| | |||||
* | Make `code generation` just work | Aleksey Kladov | 2021-03-08 | 1 | -8/+13 |
| | | | | | Contributors don't need to learn about `cargo xtask codegen` if `cargo test` just does the right thing. | ||||
* | Make working with codegen less annoying | Aleksey Kladov | 2021-03-08 | 1 | -12/+4 |
| | | | | | | | | | | We probably should look into removing `xtask codegen` altogether. The test workflow works perfectly for package.json config. There are two things preventing that: * Lint completions are generated on demand. * Docs are not committed to the repository. | ||||
* | Check for path dev-dependencies with a version number | Laurențiu Nicola | 2021-03-01 | 1 | -10/+33 |
| | |||||
* | Simplify xtask | Aleksey Kladov | 2021-03-01 | 1 | -0/+424 |
lib/bin/test separation isn't really needed. |