mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
c205b89523
* Convert configs to cjs * Fix lint script in package.json * Move babel config to separate file * Combine webpack configs and include babelConfig
15 lines
447 B
JavaScript
15 lines
447 B
JavaScript
module.exports = {
|
|
extends: "stylelint-config-standard",
|
|
rules: {
|
|
indentation: "tab",
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"no-descending-specificity": null,
|
|
"at-rule-no-vendor-prefix": true,
|
|
"media-feature-name-no-vendor-prefix": true,
|
|
"property-no-vendor-prefix": true,
|
|
"selector-no-vendor-prefix": true,
|
|
"value-no-vendor-prefix": true,
|
|
"selector-class-pattern": null,
|
|
"selector-id-pattern": null,
|
|
},
|
|
};
|