meta(.vscode): add directory

Summary:
Add extensions and settings, and gitattributes.

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: land it.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D367
This commit is contained in:
revi 2024-06-19 14:37:53 +09:00
parent c079c483f8
commit ba384f8349
Signed by: revi
GPG key ID: 1EB4F6CEEA100E94
4 changed files with 20 additions and 3 deletions

View file

@ -18,7 +18,8 @@
},
"json": {
"type": "json",
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"]
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"],
"exclude": ["(^.vscode/*.json$)"]
},
"merge-conflict": {
"type": "merge-conflict"

5
.gitattributes vendored
View file

@ -19,5 +19,6 @@
# GitHub Linguist detection
# https://github.com/github-linguist/linguist/blob/master/docs/overrides.md
.arclint linguist-language=json
.yamllint linguist-language=yaml
.arclint linguist-language=json
.vscode/*.json linguist-language=jsonc
.yamllint linguist-language=yaml

10
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,10 @@
{
"recommendations": [
"avive.arcanist",
"christian-kohler.npm-intellisense",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"github.vscode-github-actions"
]
}

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"files.associations": {
".vscode/*.json": "jsonc"
}
}