UNPKG

491 BMarkdownView Raw
1# Filter Accounts Plugin
2
3Filter certain git accounts out of the changelog and version calculation.
4
5## Installation
6
7This plugin is not included with the `auto` CLI. To install:
8
9```sh
10npm i --save-dev @intuit-auto/filter-accounts
11# or
12yarn add -D @intuit-auto/filter-accounts
13```
14
15## Usage
16
17Simply supply the names of the account to filter
18
19```json
20{
21 "plugins": [
22 ["filter-accounts", { "accounts": ["pdbf", "ghost"] }],
23 // or
24 ["filter-accounts", ["pdbf", "ghost"]]
25 ]
26}
27```