eslint-config-agent 1.6.3 → 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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file. See [Conven
4
4
 
5
5
 
6
6
 
7
+ ## [1.7.2](https://github.com/tupe12334/eslint-config/compare/v1.7.1...v1.7.2) (2025-11-10)
8
+
9
+ ### Features
10
+
11
+ * Add project onboarding and boot verification documentation ([9c4d726](https://github.com/tupe12334/eslint-config/commit/9c4d726b2f6db94a5e1d38749343c34f48ca1b9a))
12
+
13
+ ## [1.7.1](https://github.com/tupe12334/eslint-config/compare/v1.6.3...v1.7.1) (2025-11-10)
14
+
15
+ ### Bug Fixes
16
+
17
+ * add write permissions to release workflow ([317ed2f](https://github.com/tupe12334/eslint-config/commit/317ed2f))
18
+ * remove explicit pnpm version from GitHub workflow ([a067942](https://github.com/tupe12334/eslint-config/commit/a067942))
19
+ * upgrade Node.js version to 20 in release workflow ([d9f84b6](https://github.com/tupe12334/eslint-config/commit/d9f84b6))
20
+
21
+ ### Maintenance
22
+
23
+ * update pnpm-lock.yaml ([b51b4ba](https://github.com/tupe12334/eslint-config/commit/b51b4ba))
24
+
7
25
  ## [1.6.3](https://github.com/tupe12334/eslint-config/compare/v1.6.2...v1.6.3) (2025-11-04)
8
26
 
9
27
  ## [1.6.2](https://github.com/tupe12334/eslint-config/compare/v1.6.1...v1.6.2) (2025-10-15)
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Base Plugin Configurations
3
3
  *
4
- * Applies strict configs from error, default, and guard-clauses plugins.
4
+ * Applies strict configs from error and default plugins.
5
5
  * These apply globally to all file types.
6
6
  */
7
7
 
@@ -16,10 +16,4 @@ export const basePluginsConfig = [
16
16
  },
17
17
  // Default plugin strict config
18
18
  plugins.default.configs.strict,
19
- // Guard clauses plugin strict config
20
- {
21
- rules: {
22
- ...plugins["guard-clauses"].configs.strict.rules,
23
- },
24
- },
25
19
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-agent",
3
- "version": "1.6.3",
3
+ "version": "1.7.2",
4
4
  "description": "ESLint configuration package with TypeScript support",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -115,7 +115,6 @@
115
115
  "eslint-plugin-ddd": "^0.5.0",
116
116
  "eslint-plugin-default": "^1.1.0",
117
117
  "eslint-plugin-error": "^1.2.1",
118
- "eslint-plugin-guard-clauses": "^0.0.1",
119
118
  "eslint-plugin-no-optional-chaining": "^1.0.0",
120
119
  "eslint-plugin-required-exports": "^0.2.0",
121
120
  "eslint-plugin-single-export": "^1.1.2",
package/plugins/index.js CHANGED
@@ -17,7 +17,6 @@ import errorPlugin from "eslint-plugin-error";
17
17
  import defaultPlugin from "eslint-plugin-default";
18
18
  import noOptionalChainingPlugin from "eslint-plugin-no-optional-chaining";
19
19
  import dddPlugin from "eslint-plugin-ddd";
20
- import guardClausesPlugin from "eslint-plugin-guard-clauses";
21
20
  import allRules from "../rules/index.js";
22
21
  import { noDefaultClassExportRule } from "../rules/no-default-class-export/index.js";
23
22
 
@@ -43,7 +42,6 @@ export const plugins = {
43
42
  default: defaultPlugin,
44
43
  "no-optional-chaining": noOptionalChainingPlugin,
45
44
  ddd: dddPlugin,
46
- "guard-clauses": guardClausesPlugin,
47
45
  ...(preactPlugin && { preact: preactPlugin }),
48
46
  custom: {
49
47
  rules: {