2022-06-01 18:22:35 +01:00
|
|
|
module.exports = {
|
|
|
|
extends: ['stylelint-config-standard-scss'],
|
|
|
|
ignoreFiles: [
|
|
|
|
'app/javascript/styles/mastodon/reset.scss',
|
2023-04-23 21:47:57 +01:00
|
|
|
'coverage/**/*',
|
2022-06-01 18:22:35 +01:00
|
|
|
'node_modules/**/*',
|
2023-04-23 21:47:57 +01:00
|
|
|
'public/assets/**/*',
|
|
|
|
'public/packs/**/*',
|
|
|
|
'public/packs-test/**/*',
|
2022-06-01 18:22:35 +01:00
|
|
|
'vendor/**/*',
|
|
|
|
],
|
2023-04-23 21:47:57 +01:00
|
|
|
reportDescriptionlessDisables: true,
|
|
|
|
reportInvalidScopeDisables: true,
|
|
|
|
reportNeedlessDisables: true,
|
2022-06-01 18:22:35 +01:00
|
|
|
rules: {
|
|
|
|
'at-rule-empty-line-before': null,
|
|
|
|
'color-function-notation': null,
|
|
|
|
'color-hex-length': null,
|
|
|
|
'declaration-block-no-redundant-longhand-properties': null,
|
|
|
|
'no-descending-specificity': null,
|
|
|
|
'no-duplicate-selectors': null,
|
|
|
|
'number-max-precision': 8,
|
|
|
|
'property-no-vendor-prefix': null,
|
|
|
|
'selector-class-pattern': null,
|
|
|
|
'selector-id-pattern': null,
|
|
|
|
'value-keyword-case': null,
|
|
|
|
'value-no-vendor-prefix': null,
|
|
|
|
|
|
|
|
'scss/dollar-variable-empty-line-before': null,
|
|
|
|
'scss/no-global-function-names': null,
|
|
|
|
},
|
2023-04-05 08:04:08 +01:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
'files': ['app/javascript/styles/mailer.scss'],
|
|
|
|
rules: {
|
|
|
|
'property-no-unknown': [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
ignoreProperties: [
|
|
|
|
'/^mso-/',
|
|
|
|
] },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2022-06-01 18:22:35 +01:00
|
|
|
};
|