Skip to content

Commit 1b392e0

Browse files
Update bug_report.md and packages
1 parent 1f1498f commit 1b392e0

File tree

6 files changed

+416
-318
lines changed

6 files changed

+416
-318
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ labels: bug
66
assignees: Igorkowalski94
77
---
88

9-
1. Make sure you have the latest version before reporting a bug.
9+
If you have found a bug or an error in the documentation, you're in the right place.
1010

11-
**Describe the bug**
12-
A clear and concise description of what the bug is.
11+
Before you start writing an issue:
1312

14-
**Expected behavior**
15-
A clear and concise description of what you expected to happen.
13+
- Make sure you have the latest version before reporting a bug.
14+
- Create a repository where your issue can be easily investigated, that way, I’ll be able to help you faster.
15+
- If you have any questions or need help creating a configuration that meets your requirements, [help](https://github.com/Igorkowalski94/eslint-plugin-project-structure/discussions/new?category=help).
16+
- If you have an idea for a new feature or an improvement to an existing one, [ideas](https://github.com/Igorkowalski94/eslint-plugin-project-structure/discussions/new?category=ideas).
17+
- If you're interested in discussing project structures across different frameworks or want to vote on a proposed idea, [discussions](https://github.com/Igorkowalski94/eslint-plugin-project-structure/discussions?discussions_q=).
1618

17-
**Additional context**
18-
Add any other context about the problem here.
19+
Make sure your issue includes:
20+
21+
- A clear and concise description of what the bug is.
22+
- A clear and concise description of what you expected to happen.

jest.config.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@ const jestConfig: JestConfigWithTsJest = {
55
maxWorkers: "90%",
66
testEnvironment: "node",
77
transform: {
8-
"^.+\\.tsx?$": [
9-
"ts-jest",
10-
{
11-
isolatedModules: true,
12-
},
13-
],
8+
"^.+\\.tsx?$": ["ts-jest", {}],
149
},
1510
moduleDirectories: ["node_modules", "src"],
1611
cacheDirectory: "<rootDir>/jestCache",

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,34 +56,33 @@
5656
"husky:prepare": "husky install"
5757
},
5858
"dependencies": {
59-
"@typescript-eslint/utils": "^8.21.0",
59+
"@typescript-eslint/utils": "^8.29.1",
6060
"comment-json": "^4.2.5",
6161
"js-yaml": "^4.1.0",
6262
"jsonschema": "^1.5.0",
6363
"micromatch": "^4.0.8"
6464
},
6565
"devDependencies": {
66-
"@eslint/compat": "^1.2.5",
67-
"@eslint/js": "^9.18.0",
68-
"@types/eslint__js": "^8.42.3",
66+
"@eslint/compat": "^1.2.8",
67+
"@eslint/js": "^9.24.0",
6968
"@types/jest": "^29.5.14",
7069
"@types/js-yaml": "^4.0.9",
7170
"@types/micromatch": "^4.0.9",
72-
"@types/node": "^22.10.10",
73-
"eslint": "^9.18.0",
74-
"eslint-config-prettier": "^10.0.1",
71+
"@types/node": "^22.14.0",
72+
"eslint": "^9.24.0",
73+
"eslint-config-prettier": "^10.1.2",
7574
"eslint-plugin-import": "^2.31.0",
76-
"eslint-plugin-prettier": "^5.2.3",
75+
"eslint-plugin-prettier": "^5.2.6",
7776
"eslint-plugin-project-structure": "3.13.1",
7877
"husky": "^9.1.7",
7978
"jest": "^29.7.0",
80-
"prettier": "^3.4.2",
81-
"ts-jest": "^29.2.5",
79+
"prettier": "^3.5.3",
80+
"ts-jest": "^29.3.1",
8281
"ts-node": "^10.9.2",
8382
"ts-prune": "^0.10.3",
84-
"tsup": "^8.3.5",
85-
"typescript": "^5.7.3",
86-
"typescript-eslint": "^8.21.0"
83+
"tsup": "^8.4.0",
84+
"typescript": "^5.8.3",
85+
"typescript-eslint": "^8.29.1"
8786
},
8887
"resolutions": {
8988
"micromatch": "^4.0.8",
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const hasNestedArray = <T>(arr: T[]): boolean =>
1+
export const hasNestedArray = (arr: unknown[]): boolean =>
22
arr.some((item) => Array.isArray(item));

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"removeComments": true,
99
"strict": true,
1010
"alwaysStrict": true,
11+
"isolatedModules": true,
1112
"noImplicitReturns": true,
1213
"noEmit": true,
1314
"skipLibCheck": true,

0 commit comments

Comments
 (0)