Installing ng-matero

This commit is contained in:
2023-01-09 16:39:23 +01:00
parent 2425ecbd3b
commit 399b52a272
209 changed files with 15574 additions and 174 deletions

39
front/app/.stylelintrc Normal file
View File

@@ -0,0 +1,39 @@
{
"ignoreFiles": [
"dist/**",
"schematics/**"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-rational-order"
],
"plugins": [
"stylelint-order"
],
"rules": {
"alpha-value-notation": null,
"annotation-no-unknown": null,
"at-rule-empty-line-before": null,
"color-function-notation": "legacy",
"function-no-unknown": null,
"no-descending-specificity": null,
"no-empty-source": null,
"number-leading-zero": "never",
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"selector-class-pattern": null,
"selector-type-no-unknown": null,
"string-quotes": "single",
"value-keyword-case": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/comment-no-empty": null,
"scss/operator-no-unspaced": null
}
}