mm_eslint 1.3.4 → 1.3.5

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/config.js +8 -1
  2. package/package.json +1 -1
package/config.js CHANGED
@@ -505,7 +505,14 @@ Config.prototype.getIgnoredWords = function (name_type) {
505
505
  'middleware', 'component', 'controller', 'repository', 'interface', 'transformer', 'template'
506
506
  ],
507
507
  'property-value-name': [
508
- '$' // 忽略$符号的属性值名
508
+ '$', // 忽略$符号的属性值名
509
+ 'middleware', // 忽略middleware属性值名
510
+ 'component', // 忽略component属性值名
511
+ 'controller', // 忽略controller属性值名
512
+ 'repository', // 忽略repository属性值名
513
+ 'interface', // 忽略interface属性值名
514
+ 'transformer', // 忽略transformer属性值名
515
+ 'template' // 忽略template属性值名
509
516
  ]
510
517
  };
511
518
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_eslint",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "ESLint plugin for naming conventions - PascalCase, camelCase, snake_case, and UPPER_SNAKE_CASE naming rules",
5
5
  "main": "index.js",
6
6
  "keywords": [