filesafe/.stylelintrc.json
Bobby 7194f0c838
feat: transition to stylelint v14 environment
stylelint: 13 -> 14
postcss-preset-env: 6 -> 7
eslint-plugin-compat: 3 -> 4

replaced stylelint-config-standard with
stylelint-config-standard-scss

switched to @ronilaukkarinen/gulp-stylelint, a fork of gulp-stylelint,
due to the upstream's maintainer going missing

temporarily disabled some stylelint rules to ease transition
2022-03-03 18:44:43 +07:00

15 lines
424 B
JSON

{
"extends": "stylelint-config-standard-scss",
"rules": {
"block-closing-brace-newline-before": null,
"declaration-block-trailing-semicolon": "never",
"function-name-case": null,
"indentation": 2,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"scss/at-import-no-partial-leading-underscore": null,
"selector-class-pattern": null,
"selector-id-pattern": null
}
}