@primer/stylelint-config 13.0.0-rc.ead57f2 → 13.0.0-rc.ee6ceb5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +268 -136
- package/dist/index.mjs +268 -136
- package/package.json +8 -13
- package/plugins/borders.js +196 -63
- package/plugins/lib/{primitives.js → utils.js} +17 -8
- package/plugins/spacing.js +20 -23
package/plugins/borders.js
CHANGED
|
@@ -1,64 +1,197 @@
|
|
|
1
|
-
import
|
|
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
|
-
'border color': {
|
|
28
|
-
expects: 'a border color variable',
|
|
29
|
-
props: 'border{,-top,-right,-bottom,-left}-color',
|
|
30
|
-
values: [
|
|
31
|
-
'$border-*',
|
|
32
|
-
'transparent',
|
|
33
|
-
'currentColor',
|
|
34
|
-
// Match variables in any of the following formats: --color-border-*, --color-*-border-*, --color-*-border, --borderColor-, *borderColor*
|
|
35
|
-
/var\(--color-(.+-)*border(-.+)*\)/,
|
|
36
|
-
/var\(--color-[^)]+\)/,
|
|
37
|
-
/var\(--borderColor-[^)]+\)/,
|
|
38
|
-
/var\((.+-)*borderColor(-.+)*\)/,
|
|
39
|
-
],
|
|
40
|
-
replacements: {
|
|
41
|
-
'$border-gray': '$border-color',
|
|
42
|
-
},
|
|
43
|
-
},
|
|
44
|
-
'border style': {
|
|
45
|
-
expects: 'a border style variable',
|
|
46
|
-
props: 'border{,-top,-right,-bottom,-left}-style',
|
|
47
|
-
values: ['$border-style', 'none'],
|
|
48
|
-
},
|
|
49
|
-
'border width': {
|
|
50
|
-
expects: 'a border width variable',
|
|
51
|
-
props: 'border{,-top,-right,-bottom,-left}-width',
|
|
52
|
-
values: ['$border-width*', '0'],
|
|
53
|
-
},
|
|
54
|
-
'border radius': {
|
|
55
|
-
expects: 'a border radius variable',
|
|
56
|
-
props: 'border{,-{top,bottom}-{left,right}}-radius',
|
|
57
|
-
values: ['$border-radius', '0', '50%', 'inherit'],
|
|
58
|
-
replacements: {
|
|
59
|
-
'100%': '50%',
|
|
60
|
-
},
|
|
61
|
-
},
|
|
1
|
+
import stylelint from 'stylelint'
|
|
2
|
+
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
|
|
3
|
+
import valueParser from 'postcss-value-parser'
|
|
4
|
+
import {walkGroups, primitivesVariables} from './lib/utils.js'
|
|
5
|
+
|
|
6
|
+
const {
|
|
7
|
+
createPlugin,
|
|
8
|
+
utils: {report, ruleMessages, validateOptions},
|
|
9
|
+
} = stylelint
|
|
10
|
+
|
|
11
|
+
export const ruleName = 'primer/borders'
|
|
12
|
+
export const messages = ruleMessages(ruleName, {
|
|
13
|
+
rejected: (value, replacement, propName) => {
|
|
14
|
+
if (propName && propName.includes('radius') && value.includes('borderWidth')) {
|
|
15
|
+
return `Border radius variables can not be used for border widths`
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if ((propName && propName.includes('width')) || (borderShorthand(propName) && value.includes('borderRadius'))) {
|
|
19
|
+
return `Border width variables can not be used for border radii`
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
if (!replacement) {
|
|
23
|
+
return `Please use a Primer border variable instead of '${value}'. Consult the primer docs for a suitable replacement. https://primer.style/foundations/primitives/size#border`
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
return `Please replace '${value}' with a Primer border variable '${replacement['name']}'. https://primer.style/foundations/primitives/size#border`
|
|
62
27
|
},
|
|
63
|
-
|
|
64
|
-
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
const variables = primitivesVariables('border')
|
|
31
|
+
const sizes = []
|
|
32
|
+
const radii = []
|
|
33
|
+
|
|
34
|
+
// Props that we want to check
|
|
35
|
+
const propList = ['border', 'border-width', 'border-radius']
|
|
36
|
+
// Values that we want to ignore
|
|
37
|
+
const valueList = ['${']
|
|
38
|
+
|
|
39
|
+
const borderShorthand = prop =>
|
|
40
|
+
/^border(-(top|right|bottom|left|block-start|block-end|inline-start|inline-end))?$/.test(prop)
|
|
41
|
+
|
|
42
|
+
for (const variable of variables) {
|
|
43
|
+
const name = variable['name']
|
|
44
|
+
|
|
45
|
+
if (name.includes('borderWidth')) {
|
|
46
|
+
const value = variable['values']
|
|
47
|
+
.pop()
|
|
48
|
+
.replace(/max|\(|\)/g, '')
|
|
49
|
+
.split(',')[0]
|
|
50
|
+
sizes.push({
|
|
51
|
+
name,
|
|
52
|
+
values: [value],
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (name.includes('borderRadius')) {
|
|
57
|
+
radii.push(variable)
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** @type {import('stylelint').Rule} */
|
|
62
|
+
const ruleFunction = (primary, secondaryOptions, context) => {
|
|
63
|
+
return (root, result) => {
|
|
64
|
+
const validOptions = validateOptions(result, ruleName, {
|
|
65
|
+
actual: primary,
|
|
66
|
+
possible: [true],
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
if (!validOptions) return
|
|
70
|
+
|
|
71
|
+
root.walkDecls(declNode => {
|
|
72
|
+
const {prop, value} = declNode
|
|
73
|
+
|
|
74
|
+
if (!propList.some(borderProp => prop.startsWith(borderProp))) return
|
|
75
|
+
if (/^border(-(top|right|bottom|left|block-start|block-end|inline-start|inline-end))?-color$/.test(prop)) return
|
|
76
|
+
if (valueList.some(valueToIgnore => value.includes(valueToIgnore))) return
|
|
77
|
+
|
|
78
|
+
const problems = []
|
|
79
|
+
|
|
80
|
+
const parsedValue = walkGroups(valueParser(value), node => {
|
|
81
|
+
const checkForVariable = (vars, nodeValue) =>
|
|
82
|
+
vars.some(variable =>
|
|
83
|
+
new RegExp(`${variable['name'].replace(/[.*+?^${}()|[\]\\]/g, '\\$&')}\\b`).test(nodeValue),
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
// Only check word types. https://github.com/TrySound/postcss-value-parser#word
|
|
87
|
+
if (node.type !== 'word') {
|
|
88
|
+
return
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// Exact values to ignore.
|
|
92
|
+
if (
|
|
93
|
+
[
|
|
94
|
+
'*',
|
|
95
|
+
'+',
|
|
96
|
+
'-',
|
|
97
|
+
'/',
|
|
98
|
+
'0',
|
|
99
|
+
'none',
|
|
100
|
+
'inherit',
|
|
101
|
+
'initial',
|
|
102
|
+
'revert',
|
|
103
|
+
'revert-layer',
|
|
104
|
+
'unset',
|
|
105
|
+
'solid',
|
|
106
|
+
'dashed',
|
|
107
|
+
'dotted',
|
|
108
|
+
'transparent',
|
|
109
|
+
].includes(node.value)
|
|
110
|
+
) {
|
|
111
|
+
return
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const valueUnit = valueParser.unit(node.value)
|
|
115
|
+
|
|
116
|
+
if (valueUnit && (valueUnit.unit === '' || !/^-?[0-9.]+$/.test(valueUnit.number))) {
|
|
117
|
+
return
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Skip if the value unit isn't a supported unit.
|
|
121
|
+
if (valueUnit && !['px', 'rem', 'em'].includes(valueUnit.unit)) {
|
|
122
|
+
return
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// if we're looking at the border property that sets color in shorthand, don't bother checking the color
|
|
126
|
+
if (
|
|
127
|
+
// using border shorthand
|
|
128
|
+
borderShorthand(prop) &&
|
|
129
|
+
// includes a color as a third space-separated value
|
|
130
|
+
value.split(' ').length > 2 &&
|
|
131
|
+
// the color in the third space-separated value includes `node.value`
|
|
132
|
+
value
|
|
133
|
+
.split(' ')
|
|
134
|
+
.slice(2)
|
|
135
|
+
.some(color => color.includes(node.value))
|
|
136
|
+
) {
|
|
137
|
+
return
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// If the variable is found in the value, skip it.
|
|
141
|
+
if (prop.includes('width') || borderShorthand(prop)) {
|
|
142
|
+
if (checkForVariable(sizes, node.value)) {
|
|
143
|
+
return
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if (prop.includes('radius')) {
|
|
148
|
+
if (checkForVariable(radii, node.value)) {
|
|
149
|
+
return
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const replacement = (prop.includes('radius') ? radii : sizes).find(variable =>
|
|
154
|
+
variable.values.includes(node.value.replace('-', '')),
|
|
155
|
+
)
|
|
156
|
+
const fixable = replacement && valueUnit && !valueUnit.number.includes('-')
|
|
157
|
+
|
|
158
|
+
if (fixable && context.fix) {
|
|
159
|
+
node.value = node.value.replace(node.value, `var(${replacement['name']})`)
|
|
160
|
+
} else {
|
|
161
|
+
problems.push({
|
|
162
|
+
index: declarationValueIndex(declNode) + node.sourceIndex,
|
|
163
|
+
endIndex: declarationValueIndex(declNode) + node.sourceIndex + node.value.length,
|
|
164
|
+
message: messages.rejected(node.value, replacement, prop),
|
|
165
|
+
})
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
if (context.fix) {
|
|
172
|
+
declNode.value = parsedValue.toString()
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (problems.length) {
|
|
176
|
+
for (const err of problems) {
|
|
177
|
+
report({
|
|
178
|
+
index: err.index,
|
|
179
|
+
endIndex: err.endIndex,
|
|
180
|
+
message: err.message,
|
|
181
|
+
node: declNode,
|
|
182
|
+
result,
|
|
183
|
+
ruleName,
|
|
184
|
+
})
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
})
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
ruleFunction.ruleName = ruleName
|
|
192
|
+
ruleFunction.messages = messages
|
|
193
|
+
ruleFunction.meta = {
|
|
194
|
+
fixable: true,
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export default createPlugin(ruleName, ruleFunction)
|
|
@@ -2,14 +2,17 @@ import {createRequire} from 'node:module'
|
|
|
2
2
|
|
|
3
3
|
const require = createRequire(import.meta.url)
|
|
4
4
|
|
|
5
|
-
export
|
|
5
|
+
export function primitivesVariables(type) {
|
|
6
6
|
const variables = []
|
|
7
7
|
|
|
8
8
|
const files = []
|
|
9
9
|
switch (type) {
|
|
10
|
-
case '
|
|
10
|
+
case 'spacing':
|
|
11
11
|
files.push('base/size/size.json')
|
|
12
12
|
break
|
|
13
|
+
case 'border':
|
|
14
|
+
files.push('functional/size/border.json')
|
|
15
|
+
break
|
|
13
16
|
}
|
|
14
17
|
|
|
15
18
|
for (const file of files) {
|
|
@@ -18,12 +21,7 @@ export async function primitivesVariables(type) {
|
|
|
18
21
|
|
|
19
22
|
for (const key of Object.keys(data)) {
|
|
20
23
|
const size = data[key]
|
|
21
|
-
const values = size['value']
|
|
22
|
-
const intValue = parseInt(size['original']['value'])
|
|
23
|
-
if (![2, 6].includes(intValue)) {
|
|
24
|
-
values.push(`${intValue + 1}px`)
|
|
25
|
-
values.push(`${intValue - 1}px`)
|
|
26
|
-
}
|
|
24
|
+
const values = typeof size['value'] === 'string' ? [size['value']] : size['value']
|
|
27
25
|
|
|
28
26
|
variables.push({
|
|
29
27
|
name: `--${size['name']}`,
|
|
@@ -34,3 +32,14 @@ export async function primitivesVariables(type) {
|
|
|
34
32
|
|
|
35
33
|
return variables
|
|
36
34
|
}
|
|
35
|
+
|
|
36
|
+
export function walkGroups(root, validate) {
|
|
37
|
+
for (const node of root.nodes) {
|
|
38
|
+
if (node.type === 'function') {
|
|
39
|
+
walkGroups(node, validate)
|
|
40
|
+
} else {
|
|
41
|
+
validate(node)
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return root
|
|
45
|
+
}
|
package/plugins/spacing.js
CHANGED
|
@@ -1,24 +1,13 @@
|
|
|
1
1
|
import stylelint from 'stylelint'
|
|
2
2
|
import declarationValueIndex from 'stylelint/lib/utils/declarationValueIndex.cjs'
|
|
3
3
|
import valueParser from 'postcss-value-parser'
|
|
4
|
-
import {primitivesVariables} from './lib/
|
|
4
|
+
import {primitivesVariables, walkGroups} from './lib/utils.js'
|
|
5
5
|
|
|
6
6
|
const {
|
|
7
7
|
createPlugin,
|
|
8
8
|
utils: {report, ruleMessages, validateOptions},
|
|
9
9
|
} = stylelint
|
|
10
10
|
|
|
11
|
-
const walkGroups = (root, validate) => {
|
|
12
|
-
for (const node of root.nodes) {
|
|
13
|
-
if (node.type === 'function') {
|
|
14
|
-
walkGroups(node, validate)
|
|
15
|
-
} else {
|
|
16
|
-
validate(node)
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
return root
|
|
20
|
-
}
|
|
21
|
-
|
|
22
11
|
export const ruleName = 'primer/spacing'
|
|
23
12
|
export const messages = ruleMessages(ruleName, {
|
|
24
13
|
rejected: (value, replacement) => {
|
|
@@ -30,20 +19,26 @@ export const messages = ruleMessages(ruleName, {
|
|
|
30
19
|
},
|
|
31
20
|
})
|
|
32
21
|
|
|
33
|
-
|
|
34
|
-
|
|
22
|
+
// Props that we want to check
|
|
23
|
+
const propList = ['padding', 'margin', 'top', 'right', 'bottom', 'left']
|
|
24
|
+
// Values that we want to ignore
|
|
25
|
+
const valueList = ['${']
|
|
26
|
+
|
|
27
|
+
const sizes = primitivesVariables('spacing')
|
|
28
|
+
|
|
29
|
+
// Add +-1px to each value
|
|
30
|
+
for (const size of sizes) {
|
|
31
|
+
const values = size['values']
|
|
32
|
+
const px = parseInt(values.find(value => value.includes('px')))
|
|
33
|
+
if (![2, 6].includes(px)) {
|
|
34
|
+
values.push(`${px + 1}px`)
|
|
35
|
+
values.push(`${px - 1}px`)
|
|
36
|
+
}
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
/** @type {import('stylelint').Rule} */
|
|
38
40
|
const ruleFunction = (primary, secondaryOptions, context) => {
|
|
39
|
-
return
|
|
40
|
-
// Props that we want to check
|
|
41
|
-
const propList = ['padding', 'margin', 'top', 'right', 'bottom', 'left']
|
|
42
|
-
// Values that we want to ignore
|
|
43
|
-
const valueList = ['${']
|
|
44
|
-
|
|
45
|
-
const sizes = await primitivesVariables('size')
|
|
46
|
-
|
|
41
|
+
return (root, result) => {
|
|
47
42
|
const validOptions = validateOptions(result, ruleName, {
|
|
48
43
|
actual: primary,
|
|
49
44
|
possible: [true],
|
|
@@ -128,6 +123,8 @@ const ruleFunction = (primary, secondaryOptions, context) => {
|
|
|
128
123
|
|
|
129
124
|
ruleFunction.ruleName = ruleName
|
|
130
125
|
ruleFunction.messages = messages
|
|
131
|
-
ruleFunction.meta =
|
|
126
|
+
ruleFunction.meta = {
|
|
127
|
+
fixable: true,
|
|
128
|
+
}
|
|
132
129
|
|
|
133
130
|
export default createPlugin(ruleName, ruleFunction)
|