dashboardsite-to-siteobfuscationwireguard-vpn-setupwireguard-vpnwireguard-tunnelwireguard-dashboardwireguardwg-managervpn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
705 B
42 lines
705 B
{
|
|
"extends": [
|
|
"stylelint-config-recommended-scss",
|
|
"stylelint-config-standard"
|
|
],
|
|
"plugins": [
|
|
"stylelint-scss"
|
|
],
|
|
"rules": {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
ignoreAtRules: [
|
|
'extend',
|
|
'at-root',
|
|
'debug',
|
|
'warn',
|
|
'error',
|
|
'if',
|
|
'else',
|
|
'for',
|
|
'each',
|
|
'while',
|
|
'mixin',
|
|
'include',
|
|
'content',
|
|
'return',
|
|
'function'
|
|
]
|
|
}
|
|
],
|
|
"selector-type-no-unknown": [
|
|
true,
|
|
{
|
|
"ignore": [
|
|
"custom-elements"
|
|
]
|
|
}
|
|
],
|
|
"no-descending-specificity": null
|
|
}
|
|
}
|
|
|