12345678910111213141516171819202122232425262728293031323334353637383940 |
- module.exports = {
- root: true,
-
- extends: [
- "stylelint-config-standard",
- "stylelint-config-html/vue",
- "stylelint-config-standard-scss",
- "stylelint-config-recommended-vue/scss",
- "stylelint-config-recess-order"
- ],
- overrides: [
-
- {
- files: ["**/*.{vue,html}"],
- customSyntax: "postcss-html"
- }
- ],
- rules: {
- "function-url-quotes": "always",
- "color-hex-length": "long",
- "rule-empty-line-before": "never",
- "font-family-no-missing-generic-family-keyword": null,
- "scss/at-import-partial-extension": null,
- "property-no-unknown": null,
- "no-empty-source": null,
- "selector-class-pattern": null,
- "value-no-vendor-prefix": null,
- "no-descending-specificity": null,
- "value-keyword-case": null,
- "selector-pseudo-class-no-unknown": [
- true,
- {
- ignorePseudoClasses: ["global", "v-deep", "deep"]
- }
- ]
- },
- ignoreFiles: ["**/*.js", "**/*.jsx", "**/*.tsx", "**/*.ts"]
- };
|