1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 00:46:46 +00:00
bramw_baserow/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/web-frontend/.stylelintrc

22 lines
335 B
Plaintext

{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"/regex/",
"function",
"if",
"each",
"include",
"mixin",
"return",
"extend",
"for"
]
}
]
}
}