@bigbinary/neeto-commons-frontend 4.13.31 → 4.13.32
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/configs/eslint/index.mjs
CHANGED
|
@@ -201,6 +201,8 @@ export default defineConfig([
|
|
|
201
201
|
"sonarjs/no-useless-catch": "error",
|
|
202
202
|
// not-auto-fixable: This rule warns against "eval(variable)" which can allow an attacker to run arbitrary code inside your process.
|
|
203
203
|
"security/detect-eval-with-expression": "warn",
|
|
204
|
+
// TODO: Temporarily disabled the rule for major version release.
|
|
205
|
+
"import/no-unresolved": "off",
|
|
204
206
|
},
|
|
205
207
|
},
|
|
206
208
|
]);
|
|
@@ -18,4 +18,11 @@ export default defineConfig([
|
|
|
18
18
|
enforcedConfig,
|
|
19
19
|
reactConfig,
|
|
20
20
|
promiseConfig,
|
|
21
|
+
{
|
|
22
|
+
rules: {
|
|
23
|
+
// TODO: Temporarily disabled the rule for major version release.
|
|
24
|
+
"@bigbinary/neeto/webpack-aliases-and-jsconfig-paths-should-be-in-sync":
|
|
25
|
+
"off",
|
|
26
|
+
},
|
|
27
|
+
},
|
|
21
28
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.32",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|