Skip to content

Commit ec9cfc3

Browse files
committed
docs(config): fix typo and organize publish excludes 📝
- Add development documentation directory - Alphabetize publish exclude patterns in deno.json - Update README version reference to 0.2.1
1 parent badaf1b commit ec9cfc3

3 files changed

Lines changed: 196 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To exclude specific rules, configure them in your `deno.json`:
2020
{
2121
"lint": {
2222
"plugins": [
23-
"jsr:@neabyte/deno-lint@0.1.0" // add this module
23+
"jsr:@neabyte/deno-lint@0.2.1" // add this module
2424
],
2525
"rules": {
2626
"exclude": [

deno.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@neabyte/deno-lint",
33
"description": "Deno lint plugin collection for identifying and reporting on patterns found in code",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"type": "module",
66
"license": "MIT",
77
"exports": "./src/index.ts",
@@ -90,15 +90,16 @@
9090
},
9191
"publish": {
9292
"exclude": [
93-
"tests/",
94-
"dist/",
95-
"coverage/",
96-
"*.test.ts",
9793
"*.spec.ts",
94+
"*.test.ts",
95+
".github/",
96+
"coverage/",
9897
"deno.json",
99-
"issue-testing/",
98+
"development/",
99+
"dist/",
100100
"examples/",
101-
".github/"
101+
"issue-testing/",
102+
"tests/"
102103
]
103104
}
104105
}

0 commit comments

Comments
 (0)