@open-turo/eslint-config-typescript 23.1.5 → 23.1.7

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extends": [
3
- "github>open-turo/renovate-config#v1.20.0",
4
- "github>open-turo/renovate-config:npm-lib#v1.20.0"
3
+ "github>open-turo/renovate-config#v1.21.0",
4
+ "github>open-turo/renovate-config:npm-lib#v1.21.0"
5
5
  ]
6
6
  }
@@ -6,12 +6,6 @@ repos:
6
6
  - id: check-yaml
7
7
  - id: end-of-file-fixer
8
8
  - id: trailing-whitespace
9
- - repo: https://github.com/pre-commit/mirrors-prettier
10
- rev: v3.1.0
11
- hooks:
12
- - id: prettier
13
- additional_dependencies: ["prettier@3.8.3"]
14
- stages: [pre-commit]
15
9
  - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
16
10
  rev: v9.26.0
17
11
  hooks:
@@ -22,3 +16,13 @@ repos:
22
16
  rev: v1.7.12
23
17
  hooks:
24
18
  - id: actionlint
19
+ - repo: local
20
+ hooks:
21
+ - id: prettier
22
+ name: prettier
23
+ entry: npm run lint:format
24
+ language: system
25
+ types: [text]
26
+ stages: [pre-commit]
27
+ pass_filenames: false
28
+ verbose: true
package/package.json CHANGED
@@ -4,26 +4,26 @@
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@eslint/js": "9.39.4",
7
- "@typescript-eslint/eslint-plugin": "8.62.0",
8
- "@typescript-eslint/parser": "8.62.0",
7
+ "@typescript-eslint/eslint-plugin": "8.62.1",
8
+ "@typescript-eslint/parser": "8.62.1",
9
9
  "@vitest/eslint-plugin": "1.6.20",
10
10
  "eslint-config-prettier": "10.1.8",
11
11
  "eslint-import-resolver-typescript": "4.4.5",
12
12
  "eslint-plugin-import": "2.32.0",
13
- "eslint-plugin-jest": "29.15.2",
13
+ "eslint-plugin-jest": "29.15.4",
14
14
  "eslint-plugin-json": "4.0.1",
15
- "eslint-plugin-n": "18.2.0",
15
+ "eslint-plugin-n": "18.2.1",
16
16
  "eslint-plugin-perfectionist": "5.9.1",
17
17
  "eslint-plugin-prettier": "5.5.6",
18
18
  "eslint-plugin-sonarjs": "4.1.0",
19
19
  "eslint-plugin-unicorn": "56.0.1",
20
- "typescript-eslint": "8.62.0"
20
+ "typescript-eslint": "8.62.1"
21
21
  },
22
22
  "devDependencies": {
23
- "@prettier/plugin-oxc": "0.1.4",
23
+ "@prettier/plugin-oxc": "0.2.0",
24
24
  "eslint": "9.39.4",
25
25
  "jest": "30.4.2",
26
- "prettier": "3.8.4"
26
+ "prettier": "3.9.4"
27
27
  },
28
28
  "engines": {
29
29
  "node": ">= 20"
@@ -44,6 +44,8 @@
44
44
  "scripts": {
45
45
  "build": "echo noop",
46
46
  "lint": "eslint './*.{js,mjs}' test/test.spec.js",
47
+ "lint:format": "prettier --write .",
48
+ "prettier": "prettier",
47
49
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
48
50
  "tsc": "tsc"
49
51
  },
@@ -55,6 +57,6 @@
55
57
  "access": "public"
56
58
  },
57
59
  "repository": "https://github.com/open-turo/eslint-config-typescript",
58
- "version": "23.1.5",
59
- "packageManager": "npm@11.17.0"
60
+ "version": "23.1.7",
61
+ "packageManager": "npm@11.18.0"
60
62
  }