@graphcommerce/eslint-config-pwa 4.1.0 → 4.1.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/index.js +1 -5
  3. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1369](https://github.com/graphcommerce-org/graphcommerce/pull/1369) [`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9) Thanks [@paales](https://github.com/paales)! - Upgraded dependencies
8
+
9
+ * [#1368](https://github.com/graphcommerce-org/graphcommerce/pull/1368) [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a) Thanks [@paales](https://github.com/paales)! - Moved playwright test folders around, do not complain about dev dependencies
10
+
11
+ * Updated dependencies [[`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9)]:
12
+ - @graphcommerce/prettier-config-pwa@4.0.5
13
+
14
+ ## 4.1.2
15
+
16
+ ### Patch Changes
17
+
18
+ - [#1353](https://github.com/graphcommerce-org/graphcommerce/pull/1353) [`0e5ee7ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/0e5ee7ba89698e5e711001e846ed182528060cba) Thanks [@paales](https://github.com/paales)! - Eslint: enable rules that were previously disabled and make fixes
19
+
20
+ ## 4.1.1
21
+
22
+ ### Patch Changes
23
+
24
+ - [#1341](https://github.com/graphcommerce-org/graphcommerce/pull/1341) [`2e29c5852`](https://github.com/graphcommerce-org/graphcommerce/commit/2e29c585247d356e3027be92beb7815f2070c855) Thanks [@paales](https://github.com/paales)! - upgrade dependencies
25
+
3
26
  ## 4.1.0
4
27
 
5
28
  ### Minor Changes
package/index.js CHANGED
@@ -64,7 +64,7 @@ module.exports = {
64
64
  'import/no-extraneous-dependencies': [
65
65
  'error',
66
66
  {
67
- devDependencies: ['next.config.js', '**/__tests__/**', '**/_playwright/**', '**/*.d.ts'],
67
+ devDependencies: ['next.config.js', '**/test/**', '**/*.d.ts'],
68
68
  },
69
69
  ],
70
70
  'import/order': ['warn', { alphabetize: { order: 'asc' } }],
@@ -77,16 +77,12 @@ module.exports = {
77
77
  'jsx-a11y/anchor-is-valid': 'off',
78
78
 
79
79
  // react
80
- 'react/jsx-one-expression-per-line': 'off',
81
80
  'react/prop-types': 'off',
82
81
  'react/jsx-props-no-spreading': 'off',
83
82
  'react/react-in-jsx-scope': 'off',
84
- 'react/no-unescaped-entities': 'off',
85
83
  'react/require-default-props': 'off',
86
- 'react/destructuring-assignment': 'off',
87
84
  'react/jsx-no-useless-fragment': ['error', { allowExpressions: true }],
88
85
  'react-hooks/exhaustive-deps': ['error', { additionalHooks: '(useIsomorphicLayoutEffect)' }],
89
- 'react/jsx-key': ['error', { checkFragmentShorthand: true }],
90
86
  'react/jsx-no-duplicate-props': ['error', { ignoreCase: false }],
91
87
  'react/function-component-definition': 'off',
92
88
 
package/package.json CHANGED
@@ -2,22 +2,22 @@
2
2
  "name": "@graphcommerce/eslint-config-pwa",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.1.0",
5
+ "version": "4.1.3",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@graphcommerce/prettier-config-pwa": "^4.0.4",
8
+ "@graphcommerce/prettier-config-pwa": "^4.0.5",
9
9
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
10
- "@next/eslint-plugin-next": "^12.1.0",
11
- "@typescript-eslint/eslint-plugin": "^5.14.0",
12
- "@typescript-eslint/parser": "^5.14.0",
10
+ "@next/eslint-plugin-next": "^12.1.2",
11
+ "@typescript-eslint/eslint-plugin": "^5.17.0",
12
+ "@typescript-eslint/parser": "^5.17.0",
13
13
  "eslint-config-airbnb": "^19.0.4",
14
- "eslint-config-airbnb-typescript": "^16.1.2",
14
+ "eslint-config-airbnb-typescript": "^16.1.4",
15
15
  "eslint-config-prettier": "^8.5.0",
16
16
  "eslint-import-resolver-webpack": "^0.13.2",
17
17
  "eslint-plugin-import": "^2.25.4",
18
18
  "eslint-plugin-jsx-a11y": "^6.5.1",
19
19
  "eslint-plugin-react": "^7.29.4",
20
- "eslint-plugin-react-hooks": "^4.3.0"
20
+ "eslint-plugin-react-hooks": "^4.4.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "eslint": "^8.8.0"