mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 15:18:35 +00:00
24 lines
527 B
JavaScript
24 lines
527 B
JavaScript
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,
|
|
},
|
|
}
|