mm_eslint 1.7.1 → 1.7.3
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/lib/config.js +0 -7
- package/package.json +4 -4
package/lib/config.js
CHANGED
|
@@ -117,14 +117,12 @@ Config.prototype.getForbiddenWords = function (name_type) {
|
|
|
117
117
|
'processor',
|
|
118
118
|
'provider',
|
|
119
119
|
'builder',
|
|
120
|
-
'adapter',
|
|
121
120
|
'decorator',
|
|
122
121
|
'proxy',
|
|
123
122
|
'facade',
|
|
124
123
|
'mediator',
|
|
125
124
|
'observer',
|
|
126
125
|
'strategy',
|
|
127
|
-
'command',
|
|
128
126
|
'visitor',
|
|
129
127
|
'iterator',
|
|
130
128
|
'template',
|
|
@@ -158,7 +156,6 @@ Config.prototype.getForbiddenWords = function (name_type) {
|
|
|
158
156
|
'tmp',
|
|
159
157
|
'temporary',
|
|
160
158
|
'cached',
|
|
161
|
-
'buffer',
|
|
162
159
|
'buffered',
|
|
163
160
|
'input',
|
|
164
161
|
'output',
|
|
@@ -171,8 +168,6 @@ Config.prototype.getForbiddenWords = function (name_type) {
|
|
|
171
168
|
'total',
|
|
172
169
|
'sum',
|
|
173
170
|
'pointer',
|
|
174
|
-
'reference',
|
|
175
|
-
'ref',
|
|
176
171
|
'handle',
|
|
177
172
|
'handler',
|
|
178
173
|
'column',
|
|
@@ -229,11 +224,9 @@ Config.prototype.getForbiddenWords = function (name_type) {
|
|
|
229
224
|
'tmp',
|
|
230
225
|
'temporary',
|
|
231
226
|
'cached',
|
|
232
|
-
'buffer',
|
|
233
227
|
'buffered'
|
|
234
228
|
],
|
|
235
229
|
"param": [
|
|
236
|
-
'params',
|
|
237
230
|
'parameter',
|
|
238
231
|
'parameters'
|
|
239
232
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mm_eslint",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"description": "ESLint plugin for personal naming conventions - supports PascalCase, camelCase, snake_case, and UPPER_SNAKE_CASE naming rules with intelligent recommendations",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"eslint": ">=8.0.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"test": "node
|
|
41
|
+
"test": "node simple_test.js",
|
|
42
42
|
"lint": "npx eslint . --config eslint.config.js"
|
|
43
43
|
},
|
|
44
44
|
"files": [
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"LICENSE"
|
|
50
50
|
],
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"eslint-plugin-jsdoc": "^
|
|
52
|
+
"eslint-plugin-jsdoc": "^63.0.6"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@babel/parser": "^
|
|
55
|
+
"@babel/parser": "^8.0.0"
|
|
56
56
|
}
|
|
57
57
|
}
|