Skip to content

Commit 6d21a44

Browse files
committed
☕ Avoid no-import-prefix lint rule
1 parent faa979e commit 6d21a44

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

deno.jsonc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
".": "./mod.ts",
55
"./stub": "./stub.ts",
66
"./tester": "./tester.ts",
7-
"./with": "./with.ts",
7+
"./with": "./with.ts"
88
},
99
"exclude": [".coverage"],
1010
"publish": {
1111
"include": ["**/*.ts", "README.md", "LICENSE"],
12-
"exclude": ["**/*_test.ts", ".*"],
12+
"exclude": ["**/*_test.ts", ".*"]
1313
},
1414
"tasks": {
1515
"check": "deno check **/*.ts",
@@ -19,9 +19,14 @@
1919
"coverage": "deno coverage .coverage",
2020
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli ./*.ts",
2121
"update:commit": "deno task -q update --commit --prefix :package: --pre-commit=fmt,lint",
22-
"apply:supported-versions": "deno run --allow-env --allow-net --allow-read --allow-write .scripts/apply-supported-versions.ts",
22+
"apply:supported-versions": "deno run --allow-env --allow-net --allow-read --allow-write .scripts/apply-supported-versions.ts"
2323
},
2424
"imports": {
25-
"jsr:@denops/test": "./mod.ts",
25+
"jsr:@denops/test": "./mod.ts"
2626
},
27+
"lint": {
28+
"rules": {
29+
"exclude": ["no-import-prefix"]
30+
}
31+
}
2732
}

0 commit comments

Comments
 (0)