Init Danger/Endanger with Backbone/package.json versions rules

This commit is contained in:
Jamie Kyle 2022-09-16 11:32:28 -07:00 committed by GitHub
parent c6819a5438
commit bbf4e74239
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 2431 additions and 131 deletions

9
danger/rules.ts Normal file
View file

@ -0,0 +1,9 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { run } from 'endanger';
import migrateBackboneToRedux from './rules/migrateBackboneToRedux';
import packageJsonVersionsShouldBePinned from './rules/packageJsonVersionsShouldBePinned';
run(migrateBackboneToRedux(), packageJsonVersionsShouldBePinned());