mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-31 19:05:00 +07:00
Revert "jsonc: Recognize renovate.json as JSONC" (#54537)
Reverts zed-industries/zed#54527 This has unintended side effects, thus revert it to the prior state for now. Release Notes: - N/A
This commit is contained in:
parent
234fbfca23
commit
61ac9618a0
2 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@
|
|||
},
|
||||
"file_types": {
|
||||
"Dockerfile": ["Dockerfile*[!dockerignore]"],
|
||||
"JSONC": ["**/assets/**/*.json"],
|
||||
"JSONC": ["**/assets/**/*.json", "renovate.json"],
|
||||
"Git Ignore": ["dockerignore"],
|
||||
},
|
||||
"hard_tabs": false,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
name = "JSONC"
|
||||
grammar = "jsonc"
|
||||
path_suffixes = ["jsonc", "bun.lock", "devcontainer.json", "pyrightconfig.json", "tsconfig.json", "renovate.json", "luaurc", "swcrc", "babelrc", "eslintrc", "stylelintrc", "jshintrc"]
|
||||
path_suffixes = ["jsonc", "bun.lock", "devcontainer.json", "pyrightconfig.json", "tsconfig.json", "luaurc", "swcrc", "babelrc", "eslintrc", "stylelintrc", "jshintrc"]
|
||||
line_comments = ["// "]
|
||||
block_comment = { start = "/*", prefix = "", end = "*/", tab_size = 1 }
|
||||
autoclose_before = ",]}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue