mirror of https://github.com/xwiki-labs/cryptpad
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
module.exports = {
|
|
"extends": "stylelint-config-standard-less",
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"length-zero-no-unit": null,
|
|
"no-duplicate-selectors": null,
|
|
"declaration-block-no-duplicate-properties": null,
|
|
|
|
"comment-empty-line-before": null,
|
|
"rule-empty-line-before": null,
|
|
"declaration-empty-line-before": null,
|
|
"at-rule-empty-line-before": null,
|
|
"custom-property-empty-line-before": null,
|
|
|
|
"font-family-name-quotes": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"declaration-block-no-redundant-longhand-properties": null,
|
|
"shorthand-property-no-redundant-values": null,
|
|
"declaration-block-no-shorthand-property-overrides": null,
|
|
|
|
"comment-whitespace-inside": null,
|
|
|
|
"property-no-vendor-prefix": null,
|
|
"selector-no-vendor-prefix": null,
|
|
"function-name-case": null,
|
|
"selector-class-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"selector-id-pattern": null,
|
|
|
|
"selector-pseudo-element-colon-notation": null,
|
|
"media-feature-range-notation": null,
|
|
"selector-not-notation": null,
|
|
"color-function-notation": null,
|
|
"alpha-value-notation": null,
|
|
|
|
"number-max-precision": null,
|
|
|
|
"at-rule-no-unknown": null, // FIXME
|
|
|
|
"less/no-duplicate-variables": null,
|
|
"less/color-no-invalid-hex": null
|
|
}
|
|
};
|