mm_eslint 1.7.1 → 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 -5
  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,8 +170,6 @@ 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
175
  'column',
@@ -229,11 +226,9 @@ Config.prototype.getForbiddenWords = function (name_type) {
229
226
  'tmp',
230
227
  'temporary',
231
228
  'cached',
232
- 'buffer',
233
229
  'buffered'
234
230
  ],
235
231
  "param": [
236
- 'params',
237
232
  'parameter',
238
233
  'parameters'
239
234
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_eslint",
3
- "version": "1.7.1",
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
  }