fenge 0.10.2 → 0.10.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fenge",
3
- "version": "0.10.2",
3
+ "version": "0.10.4",
4
4
  "description": "A CLI tool for code quality",
5
5
  "keywords": [
6
6
  "cli",
@@ -49,11 +49,11 @@
49
49
  "lint-staged": "15.5.2",
50
50
  "ora": "8.2.0",
51
51
  "prettier": "3.6.2",
52
- "pretty-ms": "9.2.0",
52
+ "pretty-ms": "9.3.0",
53
53
  "yoctocolors": "2.1.2",
54
- "@fenge/eslint-config": "0.7.12",
55
- "@fenge/prettier-config": "0.3.10",
56
54
  "@fenge/tsconfig": "0.7.0",
55
+ "@fenge/prettier-config": "0.3.10",
56
+ "@fenge/eslint-config": "0.7.14",
57
57
  "prettier-ignore": "0.4.0"
58
58
  },
59
59
  "devDependencies": {
@@ -17,13 +17,16 @@ program
17
17
  .description("format and then lint code")
18
18
  .option(
19
19
  "-f, --fix",
20
- "automatically fix linting problems only, will not format code",
20
+ "automatically fix linting problems only, will not format code (Warning: use with caution as this may not be completely safe)",
21
21
  )
22
22
  .option(
23
23
  "-w, --write",
24
24
  "automatically format code only, will not fix linting problems",
25
25
  )
26
- .option("-u, --update", "automatically format code and fix linting problems")
26
+ .option(
27
+ "-u, --update",
28
+ "automatically format code and fix linting problems (Warning: use with caution as this may not be completely safe)",
29
+ )
27
30
  .option("-c, --config <path>", "path to configuration file")
28
31
  .option(
29
32
  "--default",
@@ -61,8 +64,14 @@ program
61
64
  program
62
65
  .command("lint")
63
66
  .description("lint code")
64
- .option("-f, --fix", "automatically fix linting problems")
65
- .option("-u, --update", "alias for '--fix' option")
67
+ .option(
68
+ "-f, --fix",
69
+ "automatically fix linting problems (Warning: use with caution as this may not be completely safe)",
70
+ )
71
+ .option(
72
+ "-u, --update",
73
+ "alias for '--fix' option (Warning: use with caution as this may not be completely safe)",
74
+ )
66
75
  .option("-c, --config <path>", "path to configuration file")
67
76
  .option(
68
77
  "--default",