eslint-config-webpack 4.3.2 → 4.3.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.
@@ -54,6 +54,8 @@ async function getMarkdownRecommendedConfig() {
54
54
 
55
55
  "no-console": "off",
56
56
 
57
+ "no-new": "off",
58
+
57
59
  "unicorn/no-unused-properties": "off",
58
60
 
59
61
  "n/no-unpublished-require": "off",
@@ -73,6 +75,8 @@ async function getMarkdownRecommendedConfig() {
73
75
  "jsdoc/require-jsdoc": "off",
74
76
 
75
77
  "@typescript-eslint/no-unused-vars": "off",
78
+
79
+ "@typescript-eslint/triple-slash-reference": "off",
76
80
  },
77
81
  },
78
82
  ];
@@ -82,8 +82,13 @@ async function getTypescriptJSDocRecommendedConfig() {
82
82
  // typescript does it
83
83
  // "jsdoc/check-syntax": "error",
84
84
 
85
- // From recommended
86
- // "jsdoc/check-tag-names": "error",
85
+ // Avoid conflict with jest special comment
86
+ "jsdoc/check-tag-names": [
87
+ "error",
88
+ {
89
+ definedTags: ["jest-environment"],
90
+ },
91
+ ],
87
92
 
88
93
  // No need
89
94
  // "jsdoc/check-template-names": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-webpack",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "Provides Webpack's eslint rules as an extensible shared config",
5
5
  "keywords": [
6
6
  "eslint",