devclean 0.1.2

A tool to clean up your development environment
Documentation
1
2
3
4
5
6
7
8
pub mod git;
pub mod node;
pub mod rust;
use std::path::Path;

pub trait LanguagePredicate {
    fn is_in_project(&self, path: &Path) -> bool;
}