forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
159 lines (150 loc) Β· 6.22 KB
/
.stylelintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
const camelCaseRegex = '^[a-z][\\w-]*$'; // Note: also allows `_` as part of BEM naming
const camelCaseValueRegex = '/^[a-z][\\w.]*$/'; // Note: also allows `.` for JS objects
const cssInJsVarRegex = '/\\${[a-zA-Z]+/';
module.exports = {
// @see https://stylelint.io/user-guide/rules
rules: {
// Enforce camelCase naming
'selector-class-pattern': camelCaseRegex,
'keyframes-name-pattern': camelCaseRegex,
// Opinionated rules
'declaration-no-important': true,
'max-nesting-depth': [
2,
{
ignore: ['blockless-at-rules', 'pseudo-classes'],
},
],
'block-no-empty': true,
'selector-no-qualifying-type': [
true,
{
ignore: ['attribute'], // Allows input[type=search]
},
],
// Non-Prettier newline rules
// Put a line-break between sections of CSS, but allow quick one-liners for legibility
'rule-empty-line-before': [
'always-multi-line',
{
ignore: ['first-nested', 'after-comment'],
},
],
'comment-empty-line-before': null,
'declaration-empty-line-before': null,
// Value preferences
'number-max-precision': null,
// Attempt to catch/flag non-variable color values
'color-named': 'never',
'color-no-hex': true,
// Prefer lowercase values, except for font names and currentColor
'value-keyword-case': [
'lower',
{
ignoreProperties: ['font-family', '/^\\$eui[\\w]+/'], // Allow fonts and Sass variables
ignoreKeywords: ['currentColor'],
},
],
'declaration-block-no-duplicate-properties': [
true,
{
ignore: ['consecutive-duplicates'], // We occasionally use duplicate property values for cross-browser fallbacks
},
],
// TODO: It may be worth investigating and updating these rules to their more modern counterparts
'color-function-notation': 'legacy',
'alpha-value-notation': 'number',
// Disable various opinionated extended stylelint rules that EUI has not previously enforced
'no-descending-specificity': null,
'keyframe-selector-notation': null,
'declaration-block-no-redundant-longhand-properties': null,
},
overrides: [
{
// TODO: Remove Sass-specific config & rules once we're completely off Sass
files: ['**/*.scss'],
ignoreFiles: [
'generator-eui/**/*.scss',
'src/global_styling/react_date_picker/**/*.scss',
'src/themes/amsterdam/global_styling/react_date_picker/**/*.scss',
'src/components/date_picker/react-datepicker/**/*.scss',
],
extends: [
'stylelint-config-standard-scss',
'stylelint-config-prettier-scss',
],
// @see https://github.com/stylelint-scss/stylelint-scss#list-of-rules
rules: {
// Casing
'scss/dollar-variable-pattern': camelCaseRegex,
'scss/at-mixin-pattern': camelCaseRegex,
'scss/at-function-pattern': camelCaseRegex,
'function-name-case': [
'lower',
{
ignoreFunctions: [`/${camelCaseRegex}/`, 'MIN'],
},
],
// Whitespace/newlines
'scss/at-if-closing-brace-space-after': 'always-intermediate',
'scss/operator-no-unspaced': true,
// Formatting rules deprecated as of v15 - keep them in Sass styles just in case until end of migration
// @see https://github.com/stylelint/stylelint/blob/main/docs/user-guide/rules.md#deprecated
'color-hex-case': 'upper',
'string-quotes': 'single',
// 2 spaces for indentation
indentation: [2, { indentInsideParens: 'once-at-root-twice-in-block' }],
// Mimic 1tbs `} else {` brace style, like our JS
'block-opening-brace-space-before': 'always',
'block-closing-brace-newline-before': 'always-multi-line',
// Ensure multiple selectors on one line each
'selector-list-comma-newline-before': 'never-multi-line',
'selector-list-comma-newline-after': 'always',
// Trim unnecessary newlines/whitespace
'block-closing-brace-empty-line-before': 'never',
'max-empty-lines': 1,
'no-eol-whitespace': true,
// Enforce spacing around various syntax symbols (colons, operators, etc.)
'declaration-colon-space-after': 'always-single-line',
'declaration-colon-space-before': 'never',
'function-calc-no-unspaced-operator': true,
'selector-combinator-space-before': 'always',
'selector-combinator-space-after': 'always',
// Ensure trailing semicolons are always present on non-oneliners
'declaration-block-semicolon-newline-after': 'always-multi-line',
// Disable various opinionated extended stylelint rules that EUI has not previously enforced
'scss/no-global-function-names': null,
'scss/dollar-variable-empty-line-before': null,
'scss/at-rule-conditional-no-parentheses': null,
'scss/double-slash-comment-empty-line-before': null,
'scss/at-if-no-null': null,
'selector-not-notation': null, // Enforce comma notation for CSS-in-JS moving forward
},
},
{
files: ['**/*.styles.ts', '**/*.ts', '**/*.tsx'],
extends: ['stylelint-config-standard'],
customSyntax: 'postcss-styled-syntax',
rules: {
// Unfortunately, double slash comments must be replaced with standard CSS /* */ comments
// Otherwise we get a parsing error - see https://github.com/hudochenkov/postcss-styled-syntax#known-issues
'no-invalid-double-slash-comments': true,
// Empty style keys should be allowed, as Emotion still uses them for generating classNames
'no-empty-source': null,
// Don't lint casing on interpolated JS vars
'function-name-case': ['lower', { ignoreFunctions: [cssInJsVarRegex] }],
'function-no-unknown': [true, { ignoreFunctions: [cssInJsVarRegex] }],
'value-keyword-case': [
'lower',
{
ignoreProperties: ['font-family'],
ignoreKeywords: [camelCaseValueRegex],
},
],
// This is set to deprecate after stylelint v16, but in the meanwhile, is helpful
// for finding extraneous semicolons after utils that already output semicolons (e.g. logicalCSS())
'no-extra-semicolons': true,
},
},
],
};