We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf6f4b commit 72303b8Copy full SHA for 72303b8
βyamllint/README.md
@@ -5,14 +5,22 @@
5
6
Daggerized version of [yamllint](https://github.com/adrienverge/yamllint).
7
8
-## Usage
+## π Usage
9
10
```sh
11
dagger -m github.com/tsirysndr/daggerverse/yamllint call lint --src <source>
12
```
13
14
-## Example
+## π§βπ¬ Example
15
16
17
dagger -m github.com/tsirysndr/daggerverse/yamllint call lint --src .
18
19
+
20
+## π§βπ» Programmatic usage
21
22
+```typescript
23
+import { lint } from 'jsr:@daggerverse/yamllint';
24
25
+await lint(".");
26
+```
βyamllint/deno.json
@@ -1,4 +1,7 @@
1
{
2
+ "name": "@daggerverse/yamllint",
3
+ "version": "0.1.0",
4
+ "exports": "./mod.ts",
"importMap": "import_map.json",
"tasks": {
"esm:add": "deno run -A https://esm.sh/v128 add",
0 commit comments