@synergyerp/frontend-standards 1.3.0 → 1.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/eslint.config.js +1 -9
- package/package.json +1 -1
package/eslint.config.js
CHANGED
|
@@ -125,15 +125,7 @@ export default tseslint.config(
|
|
|
125
125
|
},
|
|
126
126
|
rules: {
|
|
127
127
|
// ===== NAMING (FRONTEND_STANDARDS.md Section 5.2) =====
|
|
128
|
-
'id-length': [
|
|
129
|
-
'error',
|
|
130
|
-
{
|
|
131
|
-
min: 2,
|
|
132
|
-
max: 50,
|
|
133
|
-
exceptions: ['i', 'j', 'k', '_', 'x', 'y', 'z'],
|
|
134
|
-
properties: 'never',
|
|
135
|
-
},
|
|
136
|
-
],
|
|
128
|
+
'id-length': ['error', { min: 2, max: 50, properties: 'never' }],
|
|
137
129
|
camelcase: [
|
|
138
130
|
'error',
|
|
139
131
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergyerp/frontend-standards",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
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",
|