Initial commit 🚀

This commit is contained in:
2023-04-02 17:15:49 -03:00
commit f5f8550263
23 changed files with 635 additions and 0 deletions

13
.stylelintrc.json Normal file
View File

@@ -0,0 +1,13 @@
{
"processors": ["stylelint-processor-styled-components"],
"extends": ["stylelint-config-recommended", "stylelint-config-styled-components"],
"plugins": ["stylelint-order"],
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"number-leading-zero": "always",
"order/properties-alphabetical-order": true,
"rule-empty-line-before": null,
"string-quotes": "single",
"no-descending-specificity": null
}
}