Refactoring using eslint & prettier

This commit is contained in:
obergodmar
2020-08-19 14:58:49 +03:00
parent 3868d89571
commit 26e9c3afaa
67 changed files with 2068 additions and 2502 deletions
+16
View File
@@ -0,0 +1,16 @@
module.exports = {
extends: [
"stylelint-config-recommended-scss",
"stylelint-config-standard",
"stylelint-config-rational-order",
],
rules: {
indentation: 4,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"number-leading-zero": "never",
"string-quotes": "double",
},
};