We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tbc, the taplo tool itself doesn't seem to support files that don't end in .toml.
$ ./taplo-linux-x86_64 --version taplo 0.9.3 $ cat .taplo.toml [[rule]] include = ["**/foo", "**/foo.toml"] [rule.schema] path = "<my schema>" $ ./taplo-linux-x86_64 validate foo.toml INFO taplo:load_config: found configuration file path="<pwd>/.taplo.toml" INFO taplo:lint_files:collect_files: found files total=1 excluded=0 cwd="<pwd>" $ ./taplo-linux-x86_64 validate foo INFO taplo:load_config: found configuration file path="<pwd>/.taplo.toml" INFO taplo:lint_files:collect_files: found files total=1 excluded=1 cwd="<pwd>"
Note excluded= values.
excluded=
Schema checks work (correctly identify errors) in foo.toml, but I can't find any combination of options that makes foo get included.
foo.toml
foo
(Same through both vscode extension and cli tool)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tbc, the taplo tool itself doesn't seem to support files that don't end in .toml.
Note
excluded=
values.Schema checks work (correctly identify errors) in
foo.toml
, but I can't find any combination of options that makesfoo
get included.(Same through both vscode extension and cli tool)
The text was updated successfully, but these errors were encountered: