verb
Version:
A project without documentation is like a project that doesn't exist. Verb solves this by making it dead simple to generate docs, using simple markdown templates, with zero configuration required.
41 lines (34 loc) • 782 B
YAML
# The `files` object is used by the dotfiles plugin to
# determine which files to write. The key of each array
# is the name of the destination file to be written, and
# the array itself contains the line items to be written
# the corresponding dotfile.
files:
gitignore:
- <%= ignore.join('\n') %>
- test/actual
npmignore:
- <%= ignore.join('\n') %>
- test
# This is an arbitrary custom property, used by both the
# npmignore object and the gitignore ogject. It's just a
# convenience to keep the two "igmore" files in sync.
ignore:
# dotfiles
- '# dotfiles'
- '*.rar'
- '*.sublime-*'
- '*.zip'
# folders
- '# folders'
- node_modules
- experimental
- vendor
- temp
- tmp
# logs
- '# logs'
- npm-debug.log
# Always-ignore files
- '# Always-ignore files'
- TODO.md