npm(prettier-config): add .devcontainer/*.json
as jsonc
.
Summary: [devcontainer.json](https://containers.dev/implementors/spec/#devcontainerjson) is a "JSON with Comments" file. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: Watch how prettier behaves with rWEBXYZ `.devcontainer/devcontainer.json`. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D400
This commit is contained in:
parent
bfab2ea75c
commit
09d55a76c5
3 changed files with 7 additions and 1 deletions
|
@ -48,6 +48,9 @@ ## Config
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
files: [
|
files: [
|
||||||
|
'.devcontainer/devcontainer.json',
|
||||||
|
'.devcontainer.json',
|
||||||
|
'.devcontainer/*/devcontainer.json',
|
||||||
'.vscode/*.json',
|
'.vscode/*.json',
|
||||||
'**.hujson',
|
'**.hujson',
|
||||||
'jsconfig.json',
|
'jsconfig.json',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/package.json",
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
"name": "@revi/prettier-config",
|
"name": "@revi/prettier-config",
|
||||||
"version": "0.0.5",
|
"version": "0.0.6",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "revi",
|
"name": "revi",
|
||||||
"email": "revi@omglol.email",
|
"email": "revi@omglol.email",
|
||||||
|
|
|
@ -48,6 +48,9 @@ const config = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
files: [
|
files: [
|
||||||
|
'.devcontainer/devcontainer.json',
|
||||||
|
'.devcontainer.json',
|
||||||
|
'.devcontainer/*/devcontainer.json',
|
||||||
'.vscode/*.json',
|
'.vscode/*.json',
|
||||||
'**.hujson',
|
'**.hujson',
|
||||||
'jsconfig.json',
|
'jsconfig.json',
|
||||||
|
|
Loading…
Reference in a new issue