@mimik/local 7.1.5 → 7.1.6
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/dotFiles/eslint.config.js +2 -2
- package/eslint.config.js +1 -1
- package/package.json +1 -1
|
@@ -10,8 +10,8 @@ const MAX_LINES_IN_FILES = 600;
|
|
|
10
10
|
const MAX_LINES_IN_FUNCTION = 150;
|
|
11
11
|
const MAX_STATEMENTS_IN_FUNCTION = 45;
|
|
12
12
|
const MIN_KEYS_IN_OBJECT = 10;
|
|
13
|
-
const MAX_COMPLEXITY =
|
|
14
|
-
const ECMA_VERSION =
|
|
13
|
+
const MAX_COMPLEXITY = 60;
|
|
14
|
+
const ECMA_VERSION = 'latest';
|
|
15
15
|
const MAX_DEPTH = 6;
|
|
16
16
|
const ALLOWED_CONSTANTS = [0, 1, -1];
|
|
17
17
|
|
package/eslint.config.js
CHANGED
|
@@ -10,7 +10,7 @@ const MAX_LINES_IN_FUNCTION = 150;
|
|
|
10
10
|
const MAX_STATEMENTS_IN_FUNCTION = 80;
|
|
11
11
|
const MIN_KEYS_IN_OBJECT = 10;
|
|
12
12
|
const MAX_COMPLEXITY = 80;
|
|
13
|
-
const ECMA_VERSION =
|
|
13
|
+
const ECMA_VERSION = 'latest';
|
|
14
14
|
const MAX_DEPTH = 6;
|
|
15
15
|
const ALLOWED_CONSTANTS = [0, 1, -1];
|
|
16
16
|
|