We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2a20a commit a5bd9f5Copy full SHA for a5bd9f5
CHANGELOG.md
@@ -22,6 +22,8 @@
22
- Pull in fix for unsafe-libyaml security advisory, see #2812 (@dtolnay)
23
- Update git-version dependency to use Syn v2, see #2816 (@dtolnay)
24
- Update git2 dependency to v0.18.2, see #2852 (@eth-p)
25
+- Added auto detect syntax for `.jsonc` #2795 (@mxaddict)
26
+- Added auto detect syntax for `.aws/{config,credentials}` #2795 (@mxaddict)
27
28
## Syntaxes
29
src/syntax_mapping/builtins/common/50-aws-credentials.toml
@@ -0,0 +1,2 @@
1
+[mappings]
2
+"INI" = ["**/.aws/credentials", "**/.aws/config"]
src/syntax_mapping/builtins/common/50-jsonl.toml renamed to src/syntax_mapping/builtins/common/50-json.toml
@@ -1,3 +1,3 @@
# JSON Lines is a simple variation of JSON #2535
[mappings]
3
-"JSON" = ["*.jsonl"]
+"JSON" = ["*.jsonl", "*.jsonc"]
0 commit comments