2021-08-04 11:26:43 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
module.exports = {
|
2022-11-04 11:57:05 +00:00
|
|
|
'env': {
|
|
|
|
'es2020': true,
|
|
|
|
'node': true,
|
|
|
|
'jest': true,
|
2021-08-04 11:26:43 +01:00
|
|
|
},
|
2022-11-04 11:57:05 +00:00
|
|
|
'plugins': [
|
|
|
|
'stylelint-scss',
|
2021-08-04 11:26:43 +01:00
|
|
|
],
|
2022-11-04 11:57:05 +00:00
|
|
|
'extends': 'stylelint-config-standard-vue/scss',
|
|
|
|
'customSyntax': 'postcss-html',
|
|
|
|
'rules': {
|
|
|
|
'indentation': 4,
|
|
|
|
'string-quotes': 'single',
|
|
|
|
'no-duplicate-selectors': true,
|
|
|
|
'selector-max-attribute': 1,
|
|
|
|
'selector-combinator-space-after': 'always',
|
|
|
|
'selector-attribute-operator-space-before': 'never',
|
|
|
|
'selector-attribute-operator-space-after': 'never',
|
|
|
|
'selector-attribute-brackets-space-inside': 'never',
|
|
|
|
'declaration-block-trailing-semicolon': 'always',
|
|
|
|
'declaration-colon-space-before': 'never',
|
|
|
|
'declaration-colon-space-after': 'always-single-line',
|
|
|
|
'number-leading-zero': 'always',
|
|
|
|
'function-url-quotes': 'always',
|
|
|
|
'font-family-name-quotes': 'always-unless-keyword',
|
|
|
|
'comment-whitespace-inside': 'always',
|
|
|
|
'comment-empty-line-before': 'always',
|
|
|
|
'rule-empty-line-before': 'always-multi-line',
|
|
|
|
'selector-pseudo-element-colon-notation': 'single',
|
|
|
|
'selector-pseudo-class-parentheses-space-inside': 'never',
|
|
|
|
'selector-max-type': 3,
|
|
|
|
'font-family-no-missing-generic-family-keyword': true,
|
|
|
|
'at-rule-no-unknown': null,
|
|
|
|
'scss/at-rule-no-unknown': true,
|
|
|
|
'media-feature-range-operator-space-before': 'always',
|
|
|
|
'media-feature-range-operator-space-after': 'always',
|
|
|
|
'media-feature-parentheses-space-inside': 'never',
|
|
|
|
'media-feature-colon-space-before': 'never',
|
|
|
|
'media-feature-colon-space-after': 'always',
|
|
|
|
'selector-pseudo-element-no-unknown': [
|
2021-08-05 12:07:45 +01:00
|
|
|
true,
|
|
|
|
{
|
2022-11-04 11:57:05 +00:00
|
|
|
'ignorePseudoElements': ['v-deep'],
|
|
|
|
},
|
2022-05-05 09:21:47 +01:00
|
|
|
],
|
2022-11-04 11:57:05 +00:00
|
|
|
'selector-class-pattern': '.*',
|
|
|
|
'custom-property-pattern': '.*',
|
|
|
|
},
|
|
|
|
};
|