Skip to content

Commit 79ed956

Browse files
authored
Merge pull request #199 from htmlhint/dev/coliff/update-prettier
2 parents 04e6afb + 37d785d commit 79ed956

File tree

7 files changed

+11
-37
lines changed

7 files changed

+11
-37
lines changed

Diff for: .github/dependabot.yml

-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: monthly
7-
versioning-strategy: increase
8-
- package-ecosystem: npm
9-
directory: "/htmlhint/"
10-
schedule:
11-
interval: monthly
12-
- package-ecosystem: npm
13-
directory: "/htmlhint-server/"
14-
schedule:
15-
interval: monthly
163
- package-ecosystem: github-actions
174
directory: "/"
185
schedule:

Diff for: .github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ["main"]
88
workflow_dispatch:
99

1010
permissions:
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
language: [ 'javascript-typescript' ]
26+
language: ["javascript-typescript"]
2727

2828
steps:
2929
- name: Checkout repository

Diff for: .github/workflows/dependency-review.yml

-15
This file was deleted.

Diff for: htmlhint-server/src/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"forceConsistentCasingInFileNames": true,
34
"target": "es6",
45
"module": "commonjs",
56
"moduleResolution": "node",

Diff for: htmlhint/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"outDir": "out",
66
"lib": ["es6"],
77
"skipLibCheck": true,
8-
"sourceMap": true
8+
"sourceMap": true,
9+
"forceConsistentCasingInFileNames": true
910
},
1011
"exclude": ["node_modules", "server"]
1112
}

Diff for: package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@typescript-eslint/parser": "6.7.0",
2525
"eslint": "8.57.0",
2626
"eslint-config-prettier": "9.1.0",
27-
"prettier": "3.2.5"
27+
"prettier": "3.3.2"
2828
},
2929
"engines": {
3030
"node": ">= 18"

0 commit comments

Comments
 (0)