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:
parent
c079c483f8
commit
ba384f8349
4 changed files with 20 additions and 3 deletions
3
.arclint
3
.arclint
|
@ -18,7 +18,8 @@
|
||||||
},
|
},
|
||||||
"json": {
|
"json": {
|
||||||
"type": "json",
|
"type": "json",
|
||||||
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"]
|
"include": ["(^\\.arcconfig$)", "(^\\.arclint$)", "(\\.json$)"],
|
||||||
|
"exclude": ["(^.vscode/*.json$)"]
|
||||||
},
|
},
|
||||||
"merge-conflict": {
|
"merge-conflict": {
|
||||||
"type": "merge-conflict"
|
"type": "merge-conflict"
|
||||||
|
|
5
.gitattributes
vendored
5
.gitattributes
vendored
|
@ -19,5 +19,6 @@
|
||||||
|
|
||||||
# GitHub Linguist detection
|
# GitHub Linguist detection
|
||||||
# https://github.com/github-linguist/linguist/blob/master/docs/overrides.md
|
# https://github.com/github-linguist/linguist/blob/master/docs/overrides.md
|
||||||
.arclint linguist-language=json
|
.arclint linguist-language=json
|
||||||
.yamllint linguist-language=yaml
|
.vscode/*.json linguist-language=jsonc
|
||||||
|
.yamllint linguist-language=yaml
|
||||||
|
|
10
.vscode/extensions.json
vendored
Normal file
10
.vscode/extensions.json
vendored
Normal 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
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
".vscode/*.json": "jsonc"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue