mm_eslint 1.7.0 → 1.7.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.
Files changed (2) hide show
  1. package/lib/config.js +0 -7
  2. package/package.json +4 -4
package/lib/config.js CHANGED
@@ -158,7 +158,6 @@ Config.prototype.getForbiddenWords = function (name_type) {
158
158
  'tmp',
159
159
  'temporary',
160
160
  'cached',
161
- 'buffer',
162
161
  'buffered',
163
162
  'input',
164
163
  'output',
@@ -171,11 +170,8 @@ Config.prototype.getForbiddenWords = function (name_type) {
171
170
  'total',
172
171
  'sum',
173
172
  'pointer',
174
- 'reference',
175
- 'ref',
176
173
  'handle',
177
174
  'handler',
178
- 'entity',
179
175
  'column',
180
176
  'property',
181
177
  'attribute',
@@ -222,7 +218,6 @@ Config.prototype.getForbiddenWords = function (name_type) {
222
218
  'form',
223
219
  'field',
224
220
  'property',
225
- 'entity',
226
221
  'data',
227
222
  'result',
228
223
  'output',
@@ -231,11 +226,9 @@ Config.prototype.getForbiddenWords = function (name_type) {
231
226
  'tmp',
232
227
  'temporary',
233
228
  'cached',
234
- 'buffer',
235
229
  'buffered'
236
230
  ],
237
231
  "param": [
238
- 'params',
239
232
  'parameter',
240
233
  'parameters'
241
234
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_eslint",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
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 test_basic.js",
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": "^61.5.0"
52
+ "eslint-plugin-jsdoc": "^63.0.6"
53
53
  },
54
54
  "dependencies": {
55
- "@babel/parser": "^7.28.6"
55
+ "@babel/parser": "^8.0.0"
56
56
  }
57
57
  }