From ae78bf2622f20ce4f2ff6e5f98da457189783e49 Mon Sep 17 00:00:00 2001 From: Mogyuchi Date: Fri, 1 Nov 2024 08:23:01 +0900 Subject: [PATCH 1/3] chore: jsonc test --- .gitattributes | 2 ++ .vscode/settings.json | 5 +++++ test.json | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 test.json diff --git a/.gitattributes b/.gitattributes index a252d3d74..e57fb394e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ *.md linguist-detectable + +test.json linguist-language=JSON-with-Comments diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..22d368fd7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "test.json": "jsonc" + } + } \ No newline at end of file diff --git a/test.json b/test.json new file mode 100644 index 000000000..99b434ee0 --- /dev/null +++ b/test.json @@ -0,0 +1,3 @@ +{ + // hoge +} From 153e4a93e5ff330d4da9a9ff0b2e125b3064891f Mon Sep 17 00:00:00 2001 From: Mogyuchi Date: Fri, 1 Nov 2024 08:28:03 +0900 Subject: [PATCH 2/3] update --- .vscode/settings.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 22d368fd7..67bb9f45e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { - "files.associations": { - "test.json": "jsonc" - } - } \ No newline at end of file + "files.associations": { + // jsonc test + "test.json": "jsonc" + } +} From 037fccabc8a1762d4c7987a7e0ea78fac68195b3 Mon Sep 17 00:00:00 2001 From: Mogyuchi Date: Fri, 1 Nov 2024 08:29:53 +0900 Subject: [PATCH 3/3] update --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index e57fb394e..f3e115a21 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ *.md linguist-detectable +.vscode/*.json linguist-language=JSON-with-Comments test.json linguist-language=JSON-with-Comments