opusdev/vector-similarity-api
1
1# ignore-by-default2 3This is a package aimed at Node.js development tools. It provides a list of4directories that should probably be ignored by such tools, e.g. when watching5for file changes.6 7It's used by [AVA](https://www.npmjs.com/package/ava) and8[nodemon](https://www.npmjs.com/package/nodemon).9 10[Please contribute!](./CONTRIBUTING.md)11 12## Installation13 14```15npm install --save ignore-by-default16```17 18## Usage19 20The `ignore-by-default` module exports a `directories()` function, which will21return an array of directory names. These are the ones you should ignore.22 23```js24// ['.git', '.sass_cache', …]25var ignoredDirectories = require('ignore-by-default').directories()26```27 