eslint-plugin-primer-react 4.1.0-rc.34e4ecf → 4.1.0-rc.86769f5

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 CHANGED
@@ -6,6 +6,10 @@
6
6
 
7
7
  - [#129](https://github.com/primer/eslint-plugin-primer-react/pull/129) [`eb04624`](https://github.com/primer/eslint-plugin-primer-react/commit/eb046249daaa9ab72d9ca4bbfba30fd494a79e23) Thanks [@joshblack](https://github.com/joshblack)! - Add no-deprecated-entrypoints rule to lint against deprecated import usage in @primer/react
8
8
 
9
+ ### Patch Changes
10
+
11
+ - [#133](https://github.com/primer/eslint-plugin-primer-react/pull/133) [`5cc9630`](https://github.com/primer/eslint-plugin-primer-react/commit/5cc96305bfa884cf9f447d1e033bc2f5c9e110b7) Thanks [@siddharthkp](https://github.com/siddharthkp)! - no-system-props: Add alignContent to allowed props for Button
12
+
9
13
  ## 4.0.4
10
14
 
11
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-primer-react",
3
- "version": "4.1.0-rc.34e4ecf",
3
+ "version": "4.1.0-rc.86769f5",
4
4
  "description": "ESLint rules for Primer React",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -19,6 +19,7 @@ const excludedComponentProps = new Map([
19
19
  ['Avatar', new Set(['size'])],
20
20
  ['AvatarToken', new Set(['size'])],
21
21
  ['Blankslate', new Set(['border'])],
22
+ ['Button', new Set(['alignContent'])],
22
23
  ['CircleOcticon', new Set(['size'])],
23
24
  ['Dialog', new Set(['width', 'height'])],
24
25
  ['IssueLabelToken', new Set(['size'])],