Skip to content

Commit

Permalink
Remove maud_lints
Browse files Browse the repository at this point in the history
It's undocumented, it doesn't do much, and it keeps breaking.
  • Loading branch information
lambda-fairy committed Sep 3, 2018
1 parent f3d967c commit 66ddbca
Show file tree
Hide file tree
Showing 14 changed files with 1 addition and 150 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ script:
- (cd benchmarks && cargo bench --no-run)
- |
CLIPPY_STATUS=0
for package in maud_htmlescape maud_macros maud maud_lints maud_extras; do
for package in maud_htmlescape maud_macros maud maud_extras; do
(cd $package && cargo clippy -- -D warnings) || CLIPPY_STATUS=$?
done
(exit $CLIPPY_STATUS)
3 changes: 0 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@ Great to see that you want to help out! Here are some tips for getting started:
* Most contributions should include tests – see the [existing test code] for how to write these.

* Documentation on the proc macro interface can be found on [docs.rust-lang.org][proc_macro].
- The `maud_lints` crate uses internal compiler APIs; the documentation for these can be found on [Manishearth's site].

Have fun! ☺️

[easy issues]: https://github.com/lfairy/maud/issues?q=is%3Aissue+is%3Aopen+label%3A%22difficulty%3A+easy%22
[existing test code]: https://github.com/lfairy/maud/tree/master/maud/tests
[proc_macro]: https://doc.rust-lang.org/nightly/proc_macro/
[compiler source]: https://github.com/rust-lang/rust/tree/master/src
[Manishearth's site]: https://manishearth.github.io/rust-internals-docs/rustc/
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ members = [
"maud_htmlescape",
"maud_macros",
"maud",
"maud_lints",
"maud_extras",
]
exclude = [
Expand Down
3 changes: 0 additions & 3 deletions maud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = "0.3", optional = true }
actix-web = { version = ">= 0.6.12, < 0.8.0", optional = true }

[dev-dependencies]
maud_lints = { version = "0.18.1", path = "../maud_lints" }

[badges]
travis-ci = { repository = "lfairy/maud" }

Expand Down
3 changes: 0 additions & 3 deletions maud/tests/basic_syntax.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(plugin)]
#![feature(proc_macro_non_items)]

#![plugin(maud_lints)]

extern crate maud;

use maud::{Markup, html};
Expand Down
3 changes: 0 additions & 3 deletions maud/tests/control_structures.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(plugin)]
#![feature(proc_macro_non_items)]

#![plugin(maud_lints)]

extern crate maud;

use maud::html;
Expand Down
3 changes: 0 additions & 3 deletions maud/tests/misc.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(plugin)]
#![feature(proc_macro_non_items)]

#![plugin(maud_lints)]

extern crate maud;

use maud::html;
Expand Down
3 changes: 0 additions & 3 deletions maud/tests/splices.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(plugin)]
#![feature(proc_macro_non_items)]

#![plugin(maud_lints)]

extern crate maud;

use maud::html;
Expand Down
1 change: 0 additions & 1 deletion maud_extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ description = "Extra bits and pieces for use in Maud templates."

[dependencies]
maud = { path = "../maud", features = ["iron"] }
maud_lints = { path = "../maud_lints" }

[lib]
path = "lib.rs"
3 changes: 0 additions & 3 deletions maud_extras/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#![feature(plugin)]
#![feature(proc_macro_non_items)]

#![plugin(maud_lints)]

extern crate maud;

use maud::{Markup, Render, html};
Expand Down
22 changes: 0 additions & 22 deletions maud_lints/Cargo.toml

This file was deleted.

41 changes: 0 additions & 41 deletions maud_lints/src/doctype.rs

This file was deleted.

29 changes: 0 additions & 29 deletions maud_lints/src/lib.rs

This file was deleted.

34 changes: 0 additions & 34 deletions maud_lints/src/util.rs

This file was deleted.

0 comments on commit 66ddbca

Please sign in to comment.