Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

sogame/danger-plugin-dangerfile-builder

Repository files navigation

danger-plugin-dangerfile-builder

Dangerfile Builder is a Danger JS plugin containing a set of common validations and utilities, build to make it easy to start using Danger JS.

Build Status SonarCloud Coverage npm version Greenkeeper badge

Installation

npm install danger-plugin-dangerfile-builder --save-dev

Usage

Edit your dangerfile.js to import the required validations and utilities, and buil the contents using those:

const { warn } = require('danger');
const {
  jsLockfile,
  commonValidJson,
  inCommitGrep,
} require('danger-plugin-dangerfile-builder');

jsLockfile();

commonValidJson();

if (inCommitGrep(/.+\.log$/)) {
  warn('Do not commit log files');
}

Validations and utilities

Find here the documentation of all validations and utilities provided by Dangerfile Builder:

Changelog

See the release history in CHANGELOG.md.

Contributing

To contribute please see CONTRIBUTING.md.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published