Skip to content

Commit b674a42

Browse files
fix: remove ignore field on deno.json (#1807)
Co-authored-by: Jo Franchetti <[email protected]>
1 parent 2facf9d commit b674a42

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

examples/videos/deno_fmt.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -141,17 +141,6 @@ file under the `fmt` field:
141141
}
142142
```
143143

144-
Or at the top level of `deno.json` to tell both `deno fmt` and `deno lint` to
145-
ignore it. (This is a good place to put your generated files):
146-
147-
```json
148-
{
149-
"fmt": {
150-
"ignore": ["main.ts", "*.json"]
151-
}
152-
}
153-
```
154-
155144
### Formatting markdown
156145

157146
`deno fmt` also works on markdown files. You can choose how to format prose with
@@ -200,7 +189,7 @@ Note that all these options also have a corresponding flags in the CLI.
200189
"semiColon": false,
201190
"singleQuote": true,
202191
"proseWrap": "always",
203-
"ignore": ["**/logs.json"]
192+
"exclude": ["**/logs.json"]
204193
}
205194
}
206195
```

0 commit comments

Comments
 (0)