Skip to content

Commit df9077c

Browse files
authored
feat: enable lint by default (denoland#665)
1 parent 6a87b1f commit df9077c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ extension has the following configuration options:
131131
- `deno.internalDebug`: If enabled the Deno Language Server will log additional
132132
internal diagnostic information.
133133
- `deno.lint`: Controls if linting information will be provided by the Deno
134-
Language Server. _boolean, default `false`_
134+
Language Server. _boolean, default `true`_
135135
- `deno.suggest.imports.hosts`: A map of domain hosts (origins) that are used
136136
for suggesting import auto completions. (See:
137137
[ImportCompletions](./docs/ImportCompletions.md) for more information.)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@
326326
},
327327
"deno.lint": {
328328
"type": "boolean",
329-
"default": false,
329+
"default": true,
330330
"markdownDescription": "Controls if linting information will be provided by the Deno Language Server.\n\n**Not recommended to be enabled globally.**",
331331
"scope": "window",
332332
"examples": [

0 commit comments

Comments
 (0)