eslint-plugin-primer-react 0.0.0-20260601163321 → 0.0.0-20260601201701
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/CHANGELOG.md +3 -1
- package/package.json +2 -2
- package/src/rules/no-system-props.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# eslint-plugin-primer-react
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20260601201701
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
- Fake entry to force publishing
|
|
10
10
|
|
|
11
|
+
- [#565](https://github.com/primer/eslint-plugin-primer-react/pull/565) [`d71ed5a`](https://github.com/primer/eslint-plugin-primer-react/commit/d71ed5aacc5f8cbfa80087da17dde4312c79f290) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Add SplitPageLayout.Sidebar to no-system-props exclusions for padding, position, and width.
|
|
12
|
+
|
|
11
13
|
## 8.6.0
|
|
12
14
|
|
|
13
15
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-primer-react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-20260601201701",
|
|
4
4
|
"description": "ESLint rules for Primer React",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"typescript": "^6.0.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@changesets/changelog-github": "^0.
|
|
44
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
45
45
|
"@changesets/cli": "^2.27.9",
|
|
46
46
|
"@github/markdownlint-github": "^0.6.3",
|
|
47
47
|
"@github/prettier-config": "0.0.6",
|
|
@@ -34,6 +34,7 @@ const excludedComponentProps = new Map([
|
|
|
34
34
|
['SplitPageLayout.Footer', new Set(['padding'])],
|
|
35
35
|
['SplitPageLayout.Pane', new Set(['padding', 'position', 'width'])],
|
|
36
36
|
['SplitPageLayout.Content', new Set(['padding', 'width'])],
|
|
37
|
+
['SplitPageLayout.Sidebar', new Set(['padding', 'position', 'width'])],
|
|
37
38
|
['StyledOcticon', new Set(['size'])],
|
|
38
39
|
['Octicon', new Set(['size', 'color'])],
|
|
39
40
|
['PointerBox', new Set(['bg'])],
|