script-engine-lib 0.3.1 → 0.3.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.
- package/.eslintrc.js +8 -1
- package/package.json +2 -2
package/.eslintrc.js
CHANGED
|
@@ -65,6 +65,13 @@ module.exports = {
|
|
|
65
65
|
selector: 'variable',
|
|
66
66
|
modifiers: ['const'],
|
|
67
67
|
format: ['PascalCase', 'UPPER_CASE']
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
selector: 'variable',
|
|
71
|
+
modifiers: [],
|
|
72
|
+
format: ['camelCase'],
|
|
73
|
+
leadingUnderscore: 'forbid',
|
|
74
|
+
trailingUnderscore: 'forbid'
|
|
68
75
|
}
|
|
69
76
|
],
|
|
70
77
|
'@typescript-eslint/no-array-constructor': 'error',
|
|
@@ -98,7 +105,7 @@ module.exports = {
|
|
|
98
105
|
'@typescript-eslint/no-shadow': 'warn',
|
|
99
106
|
'arrow-body-style': 'error',
|
|
100
107
|
'arrow-parens': [2, 'as-needed'],
|
|
101
|
-
'brace-style': ['error', '
|
|
108
|
+
'brace-style': ['error', '0tbs'],
|
|
102
109
|
'constructor-super': 'error',
|
|
103
110
|
curly: 'error',
|
|
104
111
|
'eol-last': 'error',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "script-engine-lib",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Script Engine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"deploy": "vitest run && npm run build && npm publish"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"helpers-lib": "1.12.
|
|
34
|
+
"helpers-lib": "1.12.6"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@typescript-eslint/eslint-plugin": "6.16.0",
|