@armor/create-armor-ui
Version:
A CLI tool for generating Armor UI apps.
26 lines (25 loc) • 716 B
JavaScript
module.exports = `repos:
- repo: git@github.com:armor/<your-repo>.git
# The precommit hook is defined in this repo, so always use the latest version
sha: HEAD
hooks:
- id: tslint
- id: sasslint
# - id: karma
- repo: https://github.com/pre-commit/pre-commit-hooks
sha: v1.1.1
hooks:
- id: check-added-large-files
exclude: 'package-lock.json'
- id: check-case-conflict
- id: check-merge-conflict
- id: check-json
- id: check-yaml
- id: detect-private-key
- id: end-of-file-fixer
exclude: '.*\\.svg$'
- id: mixed-line-ending
args: [--fix=no]
- id: trailing-whitespace
exclude: '.*\\.svg$'
`