@synergyerp/frontend-standards 1.5.5 → 1.5.7
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/eslint.config.js +4 -2
- package/package.json +1 -1
package/eslint.config.js
CHANGED
|
@@ -237,8 +237,9 @@ export default tseslint.config(
|
|
|
237
237
|
'@typescript-eslint/no-unused-vars': [
|
|
238
238
|
'error',
|
|
239
239
|
{
|
|
240
|
-
argsIgnorePattern: '^
|
|
241
|
-
|
|
240
|
+
argsIgnorePattern: '^(unused[A-Z]|[a-z].*)$',
|
|
241
|
+
varsIgnorePattern: '^(unused[A-Z]|[a-z].*)$',
|
|
242
|
+
destructuredArrayIgnorePattern: '^(unused[A-Z]|[a-z].*)$',
|
|
242
243
|
ignoreRestSiblings: true,
|
|
243
244
|
},
|
|
244
245
|
],
|
|
@@ -263,6 +264,7 @@ export default tseslint.config(
|
|
|
263
264
|
rules: [
|
|
264
265
|
{ from: 'employee', allow: 'shared' },
|
|
265
266
|
{ from: 'auth', allow: 'shared' },
|
|
267
|
+
{ from: 'auth', allow: 'auth' },
|
|
266
268
|
{ from: 'users', allow: 'shared' },
|
|
267
269
|
{ from: 'shared', allow: 'shared' },
|
|
268
270
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergyerp/frontend-standards",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.7",
|
|
4
4
|
"description": "SynergyERP frontend standards — ESLint, Prettier, commitlint, Husky, Vitest, TypeScript configs, modularization enforcement, and PR templates.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|