| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "root": true,
- "plugins": ["stylelint-scss"],
- "extends": [
- "stylelint-config-standard",
- "stylelint-config-html/vue",
- "stylelint-config-recess-order",
- "stylelint-config-recommended-vue",
- "stylelint-prettier/recommended"
- ],
- "overrides": [
- {
- "files": ["**/*.vue"],
- "customSyntax": "postcss-html"
- },
- {
- "files": ["**/*.scss"],
- "customSyntax": "postcss-scss"
- }
- ],
- "rules": {
- "function-url-quotes": "always",
- "import-notation": "string",
- "no-descending-specificity": null,
- "no-empty-source": null,
- "color-hex-length": "short",
- "no-duplicate-selectors": null,
- "selector-class-pattern": null,
- "property-no-unknown": [true, { "ignoreSelectors": [":root"] }],
- "declaration-block-no-duplicate-custom-properties": [
- true,
- {
- "ignoreProperties": ["--vp-screen-max-width"]
- }
- ],
- "at-rule-no-unknown": null,
- "function-no-unknown": null,
- "at-rule-empty-line-before": null,
- "no-invalid-position-at-import-rule": null
- },
- "ignoreFiles": ["*.html"]
- }
|