summary refs log tree commit diff
path: root/src/librustc/lint/context.rs
AgeCommit message (Expand)AuthorLines
2015-07-28rustc: Add a --cap-lints flag to the compilerAlex Crichton-1/+16
2015-07-15Implement lint deprecation/removal…Simonas Kazlauskas-10/+32
2015-06-18Make a better error message for using #[feature] on stable rustBrian Anderson-33/+1
2015-06-11Conver reborrows to .iter() calls where appropriateJoshua Landau-1/+1
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-1/+1
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-25/+16
2015-03-02Enable recursion for visit_ty in lint visitorIvan Petkov-1/+1
2015-02-28Rename LintPass::check_trait_method to check_trait_itemIvan Petkov-1/+1
2015-02-28Separate most of rustc::lint::builtin into a separate crate.Huon Wilson-76/+2
2015-02-22Rollup merge of #22592 - nikomatsakis:deprecate-bracket-bracket, r=aturonManish Goregaokar-10/+10
2015-02-22Rollup merge of #22542 - ipetkov:unsafe-lint, r=huonwManish Goregaokar-2/+2
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-10/+10
2015-02-19Unsafe lint will also check for other unsafe codeIvan Petkov-2/+2
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-17/+17
2015-02-12Warn when linking a plugin into a non-plugin crateKeegan McAllister-0/+1
2015-02-11rollup merge of #21881: richo/lint-no-mangle-constAlex Crichton-1/+1
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-2/+2
2015-02-06librustc has been updatedGuillaumeGomez-3/+3
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-4/+4
2015-02-02lint: Deny #[no_mangle] const itemsRicho Healey-1/+1
2015-02-02`for x in xs.into_iter()` -> `for x in xs`Jorge Aparicio-5/+5
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-6/+6
2015-02-01More deprecating of i/u suffixes in librariesAlfie John-1/+1
2015-01-29lint: warn about #[no_mangle] fns that aren't exportedRicho Healey-0/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-26Merge remote-tracking branch 'rust-lang/master'Brian Anderson-0/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-0/+1
2015-01-25Add a missing fmt::Debug impl lintSteven Fackler-0/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-32/+1
2015-01-25Add a lint to detect unconditional recursion.Huon Wilson-0/+1
2015-01-21Implement unused features checkBrian Anderson-1/+1
2015-01-21Tie stability attributes to feature gatesBrian Anderson-9/+0
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-1/+1
2015-01-21rollup merge of #20179: eddyb/blind-itemsAlex Crichton-8/+0
2015-01-21rustc: fix fallout of merging ast::ViewItem into ast::Item.Eduard Burtescu-8/+0
2015-01-20rustc: Remove deprecated lint namesAlex Crichton-24/+1
2015-01-18Fix typedef/module name conflicts in the compilerAlex Crichton-4/+4
2015-01-08Improvements to feature stagingBrian Anderson-11/+14
2015-01-07Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-07rollup merge of #20721: japaric/snapAlex Crichton-28/+28
2015-01-07Preliminary feature stagingBrian Anderson-3/+43
2015-01-07use slicing sugarJorge Aparicio-28/+28
2015-01-07falloutNick Cameron-2/+2
2015-01-07Replace full slice notation with index callsNick Cameron-28/+28
2015-01-05rollup merge of #20482: kmcallister/macro-reformAlex Crichton-15/+21
2015-01-05rollup merge of #20511: csouth3/derive-lintAlex Crichton-1/+2
2015-01-05Modernize macro_rules! invocationsKeegan McAllister-15/+21
2015-01-04Rename `raw_pointer_deriving` lint to `raw_pointer_derive`Chase Southwood-1/+2
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-1/+1