@peerigon/configs 14.3.0 → 14.4.0

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
@@ -1,3 +1,10 @@
1
+ # [14.4.0](https://github.com/peerigon/configs/compare/v14.3.0...v14.4.0) (2026-03-05)
2
+
3
+ ### Features
4
+
5
+ - **eslint:** Ignore _.generated._ files ([2fa45ae](https://github.com/peerigon/configs/commit/2fa45ae1cfd0a94679113c917f574cf73780265c))
6
+ - **prettier:** Ignore _.generated._ files ([aae8730](https://github.com/peerigon/configs/commit/aae8730871d4d37942eadc91f03fb036a171dc81))
7
+
1
8
  # [14.3.0](https://github.com/peerigon/configs/compare/v14.2.0...v14.3.0) (2026-03-02)
2
9
 
3
10
  ### Features
@@ -7,6 +7,7 @@ const gitignoreExists = fs.existsSync(gitignorePath);
7
7
  /** @type {import("eslint").Linter.Config[]} */
8
8
  export const base = [
9
9
  gitignoreExists ? includeIgnoreFile(gitignorePath) : {},
10
+ { ignores: ["**/*.generated.*"] },
10
11
  {
11
12
  linterOptions: {
12
13
  reportUnusedDisableDirectives: "warn",
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ // This file is intentionally unformatted to prove .prettierignore skips *.generated.*
2
+ const x = "double quotes";
3
+ const y = { a: 1, b: 2 };
4
+ /**
5
+ * @param {*} a
6
+ * @param {*} b
7
+ * @param {*} c
8
+ * @returns
9
+ */
10
+ function foo(a, b, c) { return a + b + c; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "14.3.0",
3
+ "version": "14.4.0",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",