@cabloy/lint 4.0.18 → 4.0.20

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/LICENSE CHANGED
File without changes
package/api/eslint.js CHANGED
@@ -11,6 +11,7 @@ module.exports = {
11
11
  browser: true,
12
12
  es2021: true,
13
13
  node: true,
14
+ mocha: true,
14
15
  },
15
16
  globals: {
16
17
  // $: true,
package/common/rules.js CHANGED
@@ -111,6 +111,8 @@ const rules = {
111
111
  extendDefaults: true,
112
112
  },
113
113
  ],
114
+ 'prefer-rest-params': 'off',
115
+ // 'no-setter-return': 'off', // no effect for typescript check
114
116
  };
115
117
 
116
118
  module.exports = rules;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/lint",
3
- "version": "4.0.18",
3
+ "version": "4.0.20",
4
4
  "description": "Node Style Guide for EggBorn/Cabloy.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -22,4 +22,4 @@
22
22
  "prettier": "^3.2.5"
23
23
  },
24
24
  "gitHead": "2d40c063c115b230fdbc89f5a78b4412ebd0dfc9"
25
- }
25
+ }