complete-cli 1.5.2 → 1.5.3

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.
@@ -44,6 +44,10 @@
44
44
  // Use Prettier to format "cspell.config.jsonc".
45
45
  "cSpell.autoFormatConfigFile": true,
46
46
 
47
+ // Change all ESLint errors to have yellow squigglies instead of red squigglies.
48
+ // https://www.joshuakgoldberg.com/blog/if-i-wrote-a-linter-part-2-developer-experience/#only-errors
49
+ "eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
50
+
47
51
  // -----------------
48
52
  // Language settings
49
53
  // -----------------
@@ -6,8 +6,7 @@ await lintCommands(import.meta.dirname, [
6
6
  "tsc --noEmit --project ./scripts/tsconfig.json",
7
7
 
8
8
  // Use ESLint to lint the TypeScript code.
9
- // - "--max-warnings 0" makes warnings fail, since we set all ESLint errors to warnings.
10
- "eslint --max-warnings 0 .",
9
+ "eslint .",
11
10
 
12
11
  // Use Prettier to check formatting.
13
12
  // - "--log-level=warn" makes it only output errors.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complete-cli",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "A command line tool for bootstrapping TypeScript projects.",
5
5
  "keywords": [
6
6
  "typescript"
@@ -42,13 +42,13 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/klaw-sync": "6.0.5",
45
- "@types/node": "24.9.2",
45
+ "@types/node": "24.10.1",
46
46
  "@types/source-map-support": "0.5.10",
47
47
  "ts-loader": "9.5.4",
48
48
  "tsconfig-paths-webpack-plugin": "4.2.0",
49
49
  "typescript": "5.9.3",
50
- "typescript-eslint": "8.46.2",
51
- "webpack": "5.102.1",
50
+ "typescript-eslint": "8.47.0",
51
+ "webpack": "5.103.0",
52
52
  "webpack-cli": "6.0.1",
53
53
  "webpack-shebang-plugin": "1.1.8"
54
54
  },