Skip to content

Commit fff9330

Browse files
committed
Fix lint
1 parent 7a36ea0 commit fff9330

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/.config/automd.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Config } from 'automd'
22

33
const config: Config = {
4-
input: ["README.md", "**/*.md"]
4+
input: ['README.md', '**/*.md']
55
}
66

77
export default config

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ dist
5454

5555
# Shelve
5656
.shelve
57+
58+
# Coverage
59+
coverage/

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "default-repository",
33
"version": "0.0.3",
44
"private": true,
5+
"type": "module",
56
"description": "default repository for HugoRCD",
67
"author": "HugoRCD",
78
"funding": "https://github.com/sponsors/HugoRCD",
@@ -24,5 +25,8 @@
2425
"eslint": "^9.3.0",
2526
"typescript": "^5.4.5",
2627
"vitest": "^1.6.0"
28+
},
29+
"publishConfig": {
30+
"access": "public"
2731
}
2832
}

0 commit comments

Comments
 (0)