material-components_materia.../commitlint.config.js
Elizabeth Mitchell dd87fd2117 feat(sass-ext): add @material/web/sass/ext helper utilities
PiperOrigin-RevId: 838854429
2025-12-01 11:12:29 -08:00

48 lines
871 B
JavaScript

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export default {
extends: ['@commitlint/config-conventional'],
rules: {
'scope-enum': [
2,
'always',
[
// Use "/" for multiple scopes: `fix(button/checkbox): subject"`
// Omit scope for broad "all" changes.
'button',
'catalog',
'checkbox',
'chips',
'color',
'dialog',
'divider',
'elevation',
'fab',
'field',
'focus',
'icon',
'iconbutton',
'labs',
'list',
'menu',
'progress',
'radio',
'ripple',
'sass-ext',
'select',
'slider',
'switch',
'tabs',
'testing',
'textfield',
'tokens',
'typography',
],
],
},
};