mm_eslint 1.2.5 → 1.2.7
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/README_EN.md +18 -18
- package/index.js +268 -2833
- package/package.json +2 -2
- package/README.md +0 -410
package/README_EN.md
CHANGED
|
@@ -256,7 +256,7 @@ The plugin validates that each word in compound names does not exceed 8 characte
|
|
|
256
256
|
|
|
257
257
|
You can customize rule parameters through configuration:
|
|
258
258
|
|
|
259
|
-
|
|
259
|
+
````javascript
|
|
260
260
|
// Custom configuration example
|
|
261
261
|
const customConfig = {
|
|
262
262
|
"class-name": {
|
|
@@ -303,28 +303,28 @@ module.exports = [
|
|
|
303
303
|
},
|
|
304
304
|
},
|
|
305
305
|
];
|
|
306
|
-
|
|
306
|
+
````
|
|
307
307
|
|
|
308
308
|
### Available Recommendations
|
|
309
309
|
|
|
310
310
|
The plugin provides recommendations for common programming operations:
|
|
311
311
|
|
|
312
|
-
| Original Word | Recommended Word | Description
|
|
313
|
-
|
|
314
|
-
| `calculate`
|
|
315
|
-
| `generate`
|
|
316
|
-
| `initialize`
|
|
317
|
-
| `execute`
|
|
318
|
-
| `process`
|
|
319
|
-
| `retrieve`
|
|
320
|
-
| `persist`
|
|
321
|
-
| `compare`
|
|
322
|
-
| `duplicate`
|
|
323
|
-
| `transfer`
|
|
324
|
-
| `convert`
|
|
325
|
-
| `verify`
|
|
326
|
-
| `construct`
|
|
327
|
-
| `handle`
|
|
312
|
+
| Original Word | Recommended Word | Description |
|
|
313
|
+
| ------------- | ---------------- | ------------------------- |
|
|
314
|
+
| `calculate` | `calc` | Mathematical operations |
|
|
315
|
+
| `generate` | `gen` | Data generation |
|
|
316
|
+
| `initialize` | `init` | Initialization operations |
|
|
317
|
+
| `execute` | `exec` | Command execution |
|
|
318
|
+
| `process` | `run` | Data processing |
|
|
319
|
+
| `retrieve` | `load` | Data loading |
|
|
320
|
+
| `persist` | `save` | Data storage |
|
|
321
|
+
| `compare` | `cmp` | Comparison operations |
|
|
322
|
+
| `duplicate` | `copy` | Data copying |
|
|
323
|
+
| `transfer` | `move` | Data movement |
|
|
324
|
+
| `convert` | `to` | Type conversion |
|
|
325
|
+
| `verify` | `check` | Validation checks |
|
|
326
|
+
| `construct` | `create` | Object creation |
|
|
327
|
+
| `handle` | `run` | Event handling |
|
|
328
328
|
|
|
329
329
|
### Examples
|
|
330
330
|
|