1234567891011121314151617181920212223 |
- module.exports = {
- extends: ["stylelint-config-standard", "stylelint-config-prettier"],
- // add your custom config here
- // https://stylelint.io/user-guide/configuration
- rules: {
- "at-rule-no-unknown": [
- true,
- {
- ignoreAtRules: [
- "extends",
- "apply",
- "variants",
- "responsive",
- "screen",
- "mixin",
- "include",
- ],
- },
- ],
- "declaration-block-trailing-semicolon": null,
- "no-descending-specificity": null,
- },
- }
|