Skip to content

Commit ee77052

Browse files
Merge changes from v1.9.1-next.1 into main (#105)
2 parents 5eac253 + 9785b98 commit ee77052

8 files changed

Lines changed: 202 additions & 447 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v22

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v5.0.0
44
hooks:
55
# Git Style
66
- id: check-added-large-files # Prevent large files from commit (default=500kb)

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
---
66

7+
## [1.9.1-next.1](https://github.com/Nerdware-LLC/ts-string-helpers/compare/v1.9.0...v1.9.1-next.1) (2025-03-06)
8+
79
# [1.9.0](https://github.com/Nerdware-LLC/ts-string-helpers/compare/v1.8.1...v1.9.0) (2025-02-24)
810

911

eslint.config.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import eslintJS from "@eslint/js";
22
import stylisticPlugin from "@stylistic/eslint-plugin";
3+
import vitestPlugin from "@vitest/eslint-plugin";
34
import eslintConfigPrettier from "eslint-config-prettier";
45
import importPlugin from "eslint-plugin-import-x";
56
import nodePlugin from "eslint-plugin-n";
6-
import vitestPlugin from "eslint-plugin-vitest";
77
import globals from "globals";
88
import tsEslint from "typescript-eslint";
99

@@ -29,6 +29,16 @@ export default tsEslint.config(
2929
"import-x": importPlugin,
3030
"n": nodePlugin,
3131
},
32+
settings: {
33+
"import-x/extensions": [".ts", ".js"],
34+
"import-x/parsers": {
35+
"@typescript-eslint/parser": [".ts", ".js"],
36+
},
37+
"import-x/resolver": {
38+
node: { extensions: [".ts", ".js"] },
39+
typescript: { project: ["tsconfig.json"] },
40+
},
41+
},
3242
rules: {
3343
// MERGE PRESETS:
3444
...stylisticPlugin.configs.customize(
@@ -82,16 +92,6 @@ export default tsEslint.config(
8292
// RULES: eslint-config-prettier (must be last to remove rules that conflict with prettier)
8393
...eslintConfigPrettier.rules,
8494
},
85-
settings: {
86-
"import-x/extensions": [".ts", ".js"],
87-
"import-x/parsers": {
88-
"@typescript-eslint/parser": [".ts", ".js"],
89-
},
90-
"import-x/resolver": {
91-
node: { extensions: [".ts", ".js"] },
92-
typescript: { project: ["tsconfig.json"] },
93-
},
94-
},
9595
},
9696
///////////////////////////////////////////////////////////////////
9797
// TEST FILES

0 commit comments

Comments
 (0)