Skip to content

Commit 4ce8f9e

Browse files
committed
Remove settings.json, update CONTRIBUTING.md
1 parent 62258d3 commit 4ce8f9e

File tree

4 files changed

+38
-31
lines changed

4 files changed

+38
-31
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.env
22
cov_profile/
33
npm/
4-
node_modules/
4+
node_modules/
5+
.vscode/

.vscode/settings.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ and this project adheres to
1212

1313
### Changed
1414

15+
- Remove `settings.json`, update CONTRIBUTING.md.
16+
1517
### Fixed
1618

1719
### Removed

CONTRIBUTING.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,40 @@ https://deno.land/manual/getting_started/setup_your_environment. The extension
1818
helps ensure that the information you get about your code aligns to how that
1919
code will work when you try to run it under the Deno CLI."[^1]
2020

21-
If you use VSCode, the necessary configurations have been defined in
22-
`.vscode/settings.json`. Simply install the
21+
If you use VSCode, use the following settings (`.vscode/settings.json`):
22+
23+
```json
24+
{
25+
"deno.enablePaths": [
26+
"mod.ts",
27+
"version.ts",
28+
"src",
29+
"tests",
30+
"scripts",
31+
"examples/deno"
32+
],
33+
"deno.inlayHints.enumMemberValues.enabled": false,
34+
"deno.inlayHints.functionLikeReturnTypes.enabled": false,
35+
"deno.inlayHints.parameterNames.enabled": "none",
36+
"deno.inlayHints.parameterTypes.enabled": false,
37+
"deno.inlayHints.propertyDeclarationTypes.enabled": false,
38+
"deno.inlayHints.variableTypes.enabled": false,
39+
"[json]": {
40+
"editor.formatOnSave": true,
41+
"editor.defaultFormatter": "denoland.vscode-deno"
42+
},
43+
"[markdown]": {
44+
"editor.formatOnSave": true,
45+
"editor.defaultFormatter": "denoland.vscode-deno"
46+
},
47+
"[typescript]": {
48+
"editor.formatOnSave": true,
49+
"editor.defaultFormatter": "denoland.vscode-deno"
50+
}
51+
}
52+
```
53+
54+
Subsequently, install the
2355
[vscode_deno extension](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno)
2456
and you're good to go.
2557

0 commit comments

Comments
 (0)