@graphcommerce/eslint-config-pwa 4.1.1 → 4.1.4

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 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1378](https://github.com/graphcommerce-org/graphcommerce/pull/1378) [`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5) Thanks [@paales](https://github.com/paales)! - Pin all versions internally so we can’t end up in an unfixable state for the user
8
+
9
+ ## 4.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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
14
+
15
+ * [#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
16
+
17
+ * Updated dependencies [[`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9)]:
18
+ - @graphcommerce/prettier-config-pwa@4.0.5
19
+
20
+ ## 4.1.2
21
+
22
+ ### Patch Changes
23
+
24
+ - [#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
25
+
3
26
  ## 4.1.1
4
27
 
5
28
  ### Patch 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,21 @@
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.1",
5
+ "version": "4.1.4",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@graphcommerce/prettier-config-pwa": "^4.0.4",
9
8
  "@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",
9
+ "@next/eslint-plugin-next": "^12.1.2",
10
+ "@typescript-eslint/eslint-plugin": "^5.17.0",
11
+ "@typescript-eslint/parser": "^5.17.0",
13
12
  "eslint-config-airbnb": "^19.0.4",
14
- "eslint-config-airbnb-typescript": "^16.1.3",
13
+ "eslint-config-airbnb-typescript": "^16.1.4",
15
14
  "eslint-config-prettier": "^8.5.0",
16
15
  "eslint-import-resolver-webpack": "^0.13.2",
17
16
  "eslint-plugin-import": "^2.25.4",
18
17
  "eslint-plugin-jsx-a11y": "^6.5.1",
19
18
  "eslint-plugin-react": "^7.29.4",
20
- "eslint-plugin-react-hooks": "^4.3.0"
19
+ "eslint-plugin-react-hooks": "^4.4.0"
21
20
  },
22
21
  "peerDependencies": {
23
22
  "eslint": "^8.8.0"
@@ -25,6 +24,5 @@
25
24
  "sideEffects": false,
26
25
  "engines": {
27
26
  "node": "14.x"
28
- },
29
- "prettier": "@graphcommerce/prettier-config-pwa"
27
+ }
30
28
  }