@synergyerp/frontend-standards 1.6.0 → 1.6.2

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.
@@ -9,6 +9,10 @@ const EXCLUDED_NAMES = new Set([
9
9
  'toLocaleString',
10
10
  'preventDefault',
11
11
  'stopPropagation',
12
+ 'forwardRef',
13
+ 'memo',
14
+ 'createContext',
15
+ 'createRef',
12
16
  ]);
13
17
 
14
18
  const ARRAY_METHODS = new Set([
package/eslint.config.js CHANGED
@@ -226,7 +226,7 @@ export default tseslint.config(
226
226
  ],
227
227
  'jsdoc/require-description': ['error', { contexts: ['any'] }],
228
228
  'jsdoc/no-missing-syntax': 'off',
229
- 'jsdoc/multiline-blocks': ['error', { noMultilineBlocks: true, noSingleLineBlocks: true }],
229
+ 'jsdoc/multiline-blocks': ['error', { noMultilineBlocks: true, noSingleLineBlocks: false }],
230
230
  'jsdoc/require-param': ['error', { contexts: ['any'] }],
231
231
  'jsdoc/require-param-name': 'error',
232
232
  'jsdoc/require-param-type': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synergyerp/frontend-standards",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
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",