forked from BANKONPYTHAI/tauri-workflow-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.cjs
More file actions
20 lines (20 loc) · 939 Bytes
/
.stylelintrc.cjs
File metadata and controls
20 lines (20 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
extends: [
'stylelint-config-standard-scss'
],
rules: {
'color-named': ['never', { severity: 'warning' }],
'declaration-no-important': [true, { severity: 'warning' }],
'no-descending-specificity': [true, { severity: 'warning' }],
'selector-class-pattern': null,
'declaration-block-no-shorthand-property-overrides': [true, { severity: 'warning' }],
'no-duplicate-selectors': [true, { severity: 'warning' }],
'unit-no-unknown': [true, { ignoreUnits: ['xl'], severity: 'warning' }],
'declaration-block-single-line-max-declarations': [1, { severity: 'warning' }],
'scss/dollar-variable-no-missing-interpolation': true,
'scss/at-if-no-null': [true, { severity: 'warning' }],
'scss/no-global-function-names': [true, { severity: 'warning' }],
'keyframes-name-pattern': null,
'declaration-property-value-keyword-no-deprecated': [true, { severity: 'warning' }]
}
};