@alexlit/config-eslint 41.2.0 → 41.4.0

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/.eslintrc.js CHANGED
@@ -64,6 +64,7 @@ module.exports = defineConfig({
64
64
 
65
65
  /* optional */
66
66
  // './plugins/optional/jest',
67
+ // './plugins/optional/jest-dom',
67
68
  // './plugins/optional/jest-formatting',
68
69
  // './plugins/optional/node',
69
70
  // './plugins/optional/react',
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # [41.4.0](https://github.com/alex-lit/config-eslint/compare/v41.3.2...v41.4.0) (2022-01-25)
2
+
3
+ ### Features
4
+
5
+ - **plugin:** add jest-dom
6
+ ([38bc64f](https://github.com/alex-lit/config-eslint/commit/38bc64f68077afc79901c4bf7a002c447a40e92f))
7
+
8
+ ## [41.3.2](https://github.com/alex-lit/config-eslint/compare/v41.3.1...v41.3.2) (2022-01-24)
9
+
10
+ ## [41.3.1](https://github.com/alex-lit/config-eslint/compare/v41.3.0...v41.3.1) (2022-01-24)
11
+
12
+ # [41.3.0](https://github.com/alex-lit/config-eslint/compare/v41.2.0...v41.3.0) (2022-01-21)
13
+
1
14
  # [41.2.0](https://github.com/alex-lit/config-eslint/compare/v41.1.5...v41.2.0) (2022-01-17)
2
15
 
3
16
  ## [41.1.5](https://github.com/alex-lit/config-eslint/compare/v41.1.4...v41.1.5) (2022-01-14)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "41.2.0",
3
+ "version": "41.4.0",
4
4
  "private": false,
5
5
  "description": "eslint config",
6
6
  "keywords": [
@@ -40,24 +40,25 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@intlify/eslint-plugin-vue-i18n": "^1.2.0",
43
- "@typescript-eslint/eslint-plugin": "^5.9.1",
44
- "@typescript-eslint/parser": "^5.9.1",
43
+ "@typescript-eslint/eslint-plugin": "^5.10.1",
44
+ "@typescript-eslint/parser": "^5.10.1",
45
45
  "eslint": "^8.7.0",
46
46
  "eslint-config-airbnb-base": "^15.0.0",
47
47
  "eslint-config-prettier": "^8.3.0",
48
- "eslint-define-config": "^1.2.2",
48
+ "eslint-define-config": "^1.2.3",
49
49
  "eslint-import-resolver-alias": "^1.1.2",
50
50
  "eslint-plugin-array-func": "^3.1.7",
51
51
  "eslint-plugin-compat": "^4.0.1",
52
52
  "eslint-plugin-decorator-position": "^4.0.1",
53
53
  "eslint-plugin-eslint-comments": "^3.2.0",
54
- "eslint-plugin-etc": "^2.0.1",
54
+ "eslint-plugin-etc": "^2.0.2",
55
55
  "eslint-plugin-ext": "^0.1.0",
56
56
  "eslint-plugin-filenames": "^1.3.2",
57
57
  "eslint-plugin-import": "^2.25.4",
58
- "eslint-plugin-jest": "^25.7.0",
58
+ "eslint-plugin-jest": "^26.0.0",
59
+ "eslint-plugin-jest-dom": "^4.0.1",
59
60
  "eslint-plugin-jest-formatting": "^3.1.0",
60
- "eslint-plugin-jsdoc": "^37.6.1",
61
+ "eslint-plugin-jsdoc": "^37.6.3",
61
62
  "eslint-plugin-jsx-a11y": "^6.5.1",
62
63
  "eslint-plugin-lit": "^1.6.1",
63
64
  "eslint-plugin-lit-a11y": "^2.2.0",
@@ -85,7 +86,7 @@
85
86
  "eslint-plugin-spellcheck": "^0.0.19",
86
87
  "eslint-plugin-sql": "^2.1.0",
87
88
  "eslint-plugin-svelte3": "^3.4.0",
88
- "eslint-plugin-testing-library": "^5.0.3",
89
+ "eslint-plugin-testing-library": "^5.0.4",
89
90
  "eslint-plugin-typescript-sort-keys": "^2.1.0",
90
91
  "eslint-plugin-unicorn": "^40.1.0",
91
92
  "eslint-plugin-unused-imports": "^2.0.0",
@@ -94,7 +95,7 @@
94
95
  "eslint-plugin-vuetify": "^1.1.0",
95
96
  "eslint-plugin-wc": "^1.3.2",
96
97
  "eslint-plugin-write-good-comments": "^0.1.4",
97
- "typescript": "^4.5.4"
98
+ "typescript": "^4.5.5"
98
99
  },
99
100
  "devDependencies": {
100
101
  "@alexlit/lint-kit": "latest"
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @see [eslint-plugin-jest-dom](https://github.com/testing-library/eslint-plugin-jest-dom)
3
+ */
4
+ module.exports = {
5
+ extends: ['plugin:jest-dom/recommended'],
6
+
7
+ plugins: ['jest-dom'],
8
+ };
@@ -238,6 +238,7 @@ module.exports = {
238
238
  watches: [
239
239
  { name: '/handle[A-Z].*/', sort: 'alphabetical', type: 'method' },
240
240
  { name: '/on[A-Z].*/', sort: 'alphabetical', type: 'method' },
241
+ { name: '/watch[A-Z].*/', sort: 'alphabetical', type: 'method' },
241
242
  ],
242
243
  },
243
244