Skip to content

Commit

Permalink
Linting: Remove linting rule for compound tag key names
Browse files Browse the repository at this point in the history
This inspection has many false-positives in places where inconsistent
Mojang names are required, and also the timer uses keys representing the
time format (e.g. "hh:mm:ss" as a key name).

This extension does not support disabling certain linting rules in
certain places (@SPGoding :P)
  • Loading branch information
NeunEinser committed Mar 6, 2021
1 parent e61bf0a commit 2885364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"datapack.lint.blockStateTrailingComma": false,
"datapack.lint.eol": "LF",
"datapack.lint.idOmitDefaultNamespace": ["warning", false],
"datapack.lint.nameOfNbtCompoundTagKeys": ["warning", "camelCase"],
"datapack.lint.nameOfNbtCompoundTagKeys": null, //["warning", "camelCase"],
"datapack.lint.nameOfObjectives": [
"warning",
{
Expand Down

0 comments on commit 2885364

Please sign in to comment.