mod/gitignore: add editors
This commit is contained in:
parent
285ed30c58
commit
154c9de515
3 changed files with 13 additions and 0 deletions
|
@ -2,6 +2,8 @@ use crate::module::gitignore::GitIgnoreModuleArgs;
|
|||
|
||||
#[derive(Debug, Clone, clap::Args)]
|
||||
pub struct GitIgnoreModuleCliArgs {
|
||||
#[clap(long)]
|
||||
pub editors: bool,
|
||||
#[clap(long)]
|
||||
pub env: bool,
|
||||
#[clap(long)]
|
||||
|
@ -17,6 +19,7 @@ pub struct GitIgnoreModuleCliArgs {
|
|||
impl From<GitIgnoreModuleCliArgs> for GitIgnoreModuleArgs {
|
||||
fn from(args: GitIgnoreModuleCliArgs) -> Self {
|
||||
GitIgnoreModuleArgs {
|
||||
editors: args.editors,
|
||||
env: args.env,
|
||||
direnv: args.direnv,
|
||||
rust: args.rust,
|
||||
|
|
|
@ -2,6 +2,7 @@ use crate::module::gitignore::GitIgnoreModuleArgs;
|
|||
|
||||
#[derive(Default, serde::Deserialize, serde::Serialize)]
|
||||
pub struct GitIgnoreModuleConfig {
|
||||
pub editors: Option<bool>,
|
||||
pub env: Option<bool>,
|
||||
pub direnv: Option<bool>,
|
||||
pub rust: Option<bool>,
|
||||
|
@ -12,6 +13,7 @@ pub struct GitIgnoreModuleConfig {
|
|||
impl From<GitIgnoreModuleConfig> for GitIgnoreModuleArgs {
|
||||
fn from(cfg: GitIgnoreModuleConfig) -> Self {
|
||||
GitIgnoreModuleArgs {
|
||||
editors: cfg.editors.unwrap_or_default(),
|
||||
env: cfg.env.unwrap_or_default(),
|
||||
direnv: cfg.direnv.unwrap_or_default(),
|
||||
rust: cfg.rust.unwrap_or_default(),
|
||||
|
|
|
@ -2,6 +2,12 @@ use std::collections::HashMap;
|
|||
|
||||
use super::Module;
|
||||
|
||||
const EDITORS_PART: &str = "\
|
||||
# editors
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp";
|
||||
|
||||
const ENV_PART: &str = "\
|
||||
# env
|
||||
.env*
|
||||
|
@ -21,6 +27,7 @@ const NODEJS_PART: &str = "\
|
|||
node_modules/";
|
||||
|
||||
pub struct GitIgnoreModuleArgs {
|
||||
pub editors: bool,
|
||||
pub env: bool,
|
||||
pub direnv: bool,
|
||||
pub rust: bool,
|
||||
|
@ -30,6 +37,7 @@ pub struct GitIgnoreModuleArgs {
|
|||
|
||||
fn make_gitignore_content(args: GitIgnoreModuleArgs) -> String {
|
||||
[
|
||||
args.editors.then_some(EDITORS_PART),
|
||||
args.env.then_some(ENV_PART),
|
||||
args.direnv.then_some(DIRENV_PART),
|
||||
args.rust.then_some(RUST_PART),
|
||||
|
|
Loading…
Reference in a new issue