| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "extends": [
- "stylelint-config-standard-scss",
- "stylelint-config-idiomatic-order"
- ],
- "plugins": [
- "stylelint-use-logical-spec",
- "stylelint-codeguide"
- ],
- "overrides": [
- {
- "files": [
- "**/*.scss"
- ],
- "customSyntax": "postcss-scss"
- },
- {
- "files": [
- "**/*.vue"
- ],
- "customSyntax": "postcss-html"
- }
- ],
- "rules": {
- "codeguide/max-line-length": [
- 120,
- {
- "ignore": "comments"
- }
- ],
- "codeguide/indentation": 2,
- "liberty/use-logical-spec": true,
- "selector-class-pattern": null,
- "color-function-notation": null,
- "annotation-no-unknown": [
- true,
- {
- "ignoreAnnotations": [
- "default"
- ]
- }
- ],
- "media-feature-range-notation": null
- }
- }
|