@alexzzz/create-gi

1.5.3 • Public • Published

gi

a simple way to create your custom .gitignore

Installation

# use npm
npm create @alexzzz/gi
# use pnpm
pnpm create @alexzzz/gi

Tasking

  • [ ] merge existing .gitignore
  • [ ] more .gitignore rules
  • [x] improve CI process

Contributing

Contribute to the Rules

First you need to create a file in data directory.

such as:

export const example = [
  'logs',
  '*.log',
]

Next you need go to data/index.ts, add the following code:

 import { basic } from './basic'
 import { node } from './node'
+import { example } from './example'

 export function getAllData(): Record<string, string[]> {
   return {
     basic,
     node,
+    example,
   }
 }

Readme

Keywords

none

Package Sidebar

Install

npm i @alexzzz/create-gi

Weekly Downloads

3

Version

1.5.3

License

MIT

Unpacked Size

152 kB

Total Files

22

Last publish

Collaborators

  • alexzzz