mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 21:37:41 +00:00
also upgrade stylelint to avoid this issue having a regression <img width="1243" height="347" alt="Screenshot 2025-12-11 at 1 15 30 PM" src="https://github.com/user-attachments/assets/fb218768-fcd7-41aa-8d05-c12996137539" />
22 lines
547 B
JavaScript
22 lines
547 B
JavaScript
/** @type {import('stylelint').Config} */
|
|
export default {
|
|
extends: ['stylelint-config-standard-scss', 'stylelint-prettier/recommended'],
|
|
rules: {
|
|
'selector-class-pattern': null,
|
|
'no-descending-specificity': null,
|
|
'property-no-deprecated': null,
|
|
'declaration-property-value-keyword-no-deprecated': [
|
|
true,
|
|
{
|
|
severity: 'warning',
|
|
},
|
|
],
|
|
'scss/at-extend-no-missing-placeholder': [
|
|
true,
|
|
{
|
|
severity: 'warning',
|
|
},
|
|
],
|
|
'scss/dollar-variable-pattern': null,
|
|
},
|
|
};
|