rust/src/libcollections
P1start ed2aad8b43 Add lint groups; define built-in lint groups bad_style and unused
This adds support for lint groups to the compiler. Lint groups are a way of
grouping a number of lints together under one name. For example, this also
defines a default lint for naming conventions, named `bad_style`. Writing
`#[allow(bad_style)]` is equivalent to writing
`#[allow(non_camel_case_types, non_snake_case, non_uppercase_statics)]`. These
lint groups can also be defined as a compiler plugin using the new
`Registry::register_lint_group` method.

This also adds two built-in lint groups, `bad_style` and `unused`. The contents
of these groups can be seen by running `rustc -W help`.
2014-08-30 09:12:04 +12:00
..
hash Add lint groups; define built-in lint groups bad_style and unused 2014-08-30 09:12:04 +12:00
bitv.rs Use temp vars for implicit coercion to ^[T] 2014-08-26 12:37:45 +12:00
btree.rs A few minor documentation fixes 2014-08-19 17:22:18 +12:00
deque.rs A few minor documentation fixes 2014-08-19 17:22:18 +12:00
dlist.rs auto merge of #16768 : nham/rust/libcollections_test_cleanup, r=alexcrichton 2014-08-29 02:26:28 +00:00
enum_set.rs A few minor documentation fixes 2014-08-19 17:22:18 +12:00
lib.rs A few minor documentation fixes 2014-08-19 17:22:18 +12:00
macros.rs A few minor documentation fixes 2014-08-19 17:22:18 +12:00
priority_queue.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
ringbuf.rs auto merge of #16768 : nham/rust/libcollections_test_cleanup, r=alexcrichton 2014-08-29 02:26:28 +00:00
slice.rs DST coercions and DST structs 2014-08-26 12:38:51 +12:00
smallintmap.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
str.rs libcollections: In tests, remove some uses of deprecated methods and 2014-08-26 16:11:40 -04:00
string.rs Rebasing changes 2014-08-26 16:07:32 +12:00
treemap.rs auto merge of #16664 : aturon/rust/stabilize-option-result, r=alexcrichton 2014-08-28 23:56:20 +00:00
trie.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
vec.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00