1.0.3 • Published 5 years ago

autogit-plugin-gitignore v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Autogit Plugin - .gitignore

A plugin for manipulating .gitignore.

Install

npm install --save autogit-plugin-gitignore

Usage

Options

This plugin uses the following options object:

{
  add: [], // Array of globs to add
  remove: [] // Array of globs to remove
}

Configuration

Add this plugin to a command:

const gitignore = require ( 'autogit-plugin-gitignore' );

module.exports = {
  commands: {
    'my-command': [
      gitignore ({ /* YOUR OPTIONS */ })
    ]
  }
}

License

MIT © Fabio Spampinato