diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-07-20 19:59:58 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-07-20 20:17:08 -0400 |
| commit | 13b474dcbb2dd7bc58286f8b7a40bb83117e1b03 (patch) | |
| tree | a3e968cb7291edbf6c1e2ee3345fbf6cd4b780d9 /src/etc | |
| parent | bb8ca1f52cfa59e0040c2c749a1c46048fc6d48d (diff) | |
| download | rust-13b474dcbb2dd7bc58286f8b7a40bb83117e1b03.tar.gz rust-13b474dcbb2dd7bc58286f8b7a40bb83117e1b03.zip | |
rm obsolete no-op lints
Diffstat (limited to 'src/etc')
| -rw-r--r-- | src/etc/extract-tests.py | 3 | ||||
| -rw-r--r-- | src/etc/zsh/_rust | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/etc/extract-tests.py b/src/etc/extract-tests.py index 0260789adfc..91b3b814ce0 100644 --- a/src/etc/extract-tests.py +++ b/src/etc/extract-tests.py @@ -60,9 +60,6 @@ while cur < len(lines): if not re.search(r"\bextern mod extra\b", block): block = "extern mod extra;\n" + block block = """#[ forbid(ctypes) ]; -#[ forbid(deprecated_pattern) ]; -#[ forbid(implicit_copies) ]; -#[ forbid(non_implicitly_copyable_typarams) ]; #[ forbid(path_statement) ]; #[ forbid(type_limits) ]; #[ forbid(unrecognized_lint) ]; diff --git a/src/etc/zsh/_rust b/src/etc/zsh/_rust index 86dcbab93fd..befed411dd1 100644 --- a/src/etc/zsh/_rust +++ b/src/etc/zsh/_rust @@ -33,12 +33,9 @@ _rustc_opts_switches=( ) _rustc_opts_lint=( 'path-statement[path statements with no effect]' - 'deprecated-pattern[warn about deprecated uses of pattern bindings]' - 'non-implicitly-copyable-typarams[passing non implicitly copyable types as copy type params]' 'missing-trait-doc[detects missing documentation for traits]' 'missing-struct-doc[detects missing documentation for structs]' 'ctypes[proper use of core::libc types in foreign modules]' - 'implicit-copies[implicit copies of non implicitly copyable data]' "unused-mut[detect mut variables which don't need to be mutable]" 'unused-imports[imports that are never used]' 'heap-memory[use of any (~ type or @ type) heap memory]' |
