1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-22 07:41:53 +00:00
bramw_baserow/plugin-boilerplate/{{ cookiecutter.project_slug }}/plugins/{{ cookiecutter.project_module }}/web-frontend/.stylelintrc

21 lines
335 B
Text

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