hyperdx/packages/app/stylelint.config.mjs
Brandon Pereira 1b42180a3d
Fix deprecated @import syntax warning after upgrading react (#1465)
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" />
2025-12-11 22:58:08 +00:00

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,
},
};