@cabloy/lint 5.0.3 → 5.0.5

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.
Files changed (2) hide show
  1. package/common/rules.js +2 -0
  2. package/package.json +1 -1
package/common/rules.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export const rules = {
2
+ 'jsdoc/check-alignment': 'off',
2
3
  'no-extend-native': ['error', { exceptions: ['Set'] }],
3
4
  'no-new-func': 'off',
4
5
  'regexp/no-super-linear-backtracking': 'off',
@@ -103,6 +104,7 @@ export const rules = {
103
104
  ],
104
105
  '@typescript-eslint/no-empty-object-type': 'off',
105
106
  '@typescript-eslint/no-unsafe-function-type': 'off',
107
+ '@typescript-eslint/no-use-before-define': ['error', { functions: false }],
106
108
  '@stylistic/max-len': ['error', {
107
109
  code: 130,
108
110
  tabWidth: 2,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/lint",
3
3
  "type": "module",
4
- "version": "5.0.3",
4
+ "version": "5.0.5",
5
5
  "description": "Node Style Guide for Cabloy.",
6
6
  "publishConfig": {
7
7
  "access": "public"