forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz-config.js
24 lines (23 loc) · 913 Bytes
/
.cz-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
'use strict';
module.exports = {
allowBreakingChanges: ['core'],
allowCustomScopes: true,
scopes: [],
types: [
{value: 'new_audit', name: 'new_audit: A new audit'},
{value: 'core', name: 'core: Driver, gather, (non-new) audits, LHR JSON, etc'},
{value: 'tests', name: 'tests: Tests, smokehouse, etc'},
{value: 'i18n', name: 'i18n: Internationalization'},
{value: 'docs', name: 'docs: Documentation'},
{value: 'deps', name: 'deps: Dependency bumps only'},
{value: 'report', name: 'report: Report, UI, renderers'},
{value: 'cli', name: 'cli: CLI stuff'},
{value: 'clients', name: 'clients: Extension, DevTools, or LR stuff'},
{value: 'misc', name: 'misc: Something else entirely'}
]
};