adds ndjson support extension (#4043)

This commit is contained in:
Dimitri Mitropoulos 2021-09-21 19:35:59 -04:00 committed by GitHub
parent bc35b48f40
commit 0333bf62f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -7,6 +7,7 @@
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"adrieankhisbe.vscode-ndjson",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"files.associations": {
"*.db": "ndjson",
"*.jsonl": "ndjson",
"*.njson": "ndjson"
},
}