summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr')
-rw-r--r--src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr86
1 files changed, 83 insertions, 3 deletions
diff --git a/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr b/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr
index 44710b096..6ba26e977 100644
--- a/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr
+++ b/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr
@@ -1,9 +1,14 @@
-error: error reading Clippy's configuration file `$DIR/clippy.toml`: unknown field `foobar`, expected one of
+error: error reading Clippy's configuration file: unknown field `foobar`, expected one of
+ accept-comment-above-attributes
+ accept-comment-above-statement
allow-dbg-in-tests
allow-expect-in-tests
allow-mixed-uninlined-format-args
+ allow-one-hash-in-raw-strings
allow-print-in-tests
+ allow-private-module-inception
allow-unwrap-in-tests
+ allowed-idents-below-min-chars
allowed-scripts
arithmetic-side-effects-allowed
arithmetic-side-effects-allowed-binary
@@ -24,6 +29,7 @@ error: error reading Clippy's configuration file `$DIR/clippy.toml`: unknown fie
enforced-import-renames
enum-variant-name-threshold
enum-variant-size-threshold
+ excessive-nesting-threshold
future-size-threshold
ignore-interior-mutability
large-error-threshold
@@ -34,12 +40,14 @@ error: error reading Clippy's configuration file `$DIR/clippy.toml`: unknown fie
max-struct-bools
max-suggested-slice-pattern-length
max-trait-bounds
+ min-ident-chars-threshold
missing-docs-in-crate-items
msrv
pass-by-value-size-limit
semicolon-inside-block-ignore-singleline
semicolon-outside-block-ignore-multiline
single-char-binding-names-threshold
+ stack-size-threshold
standard-macro-braces
suppress-restriction-lint-in-const
third-party
@@ -54,7 +62,79 @@ error: error reading Clippy's configuration file `$DIR/clippy.toml`: unknown fie
vec-box-size-threshold
verbose-bit-mask-threshold
warn-on-all-wildcard-imports
- at line 5 column 1
+ --> $DIR/$DIR/clippy.toml:2:1
+ |
+LL | foobar = 42
+ | ^^^^^^
-error: aborting due to previous error
+error: error reading Clippy's configuration file: unknown field `barfoo`, expected one of
+ accept-comment-above-attributes
+ accept-comment-above-statement
+ allow-dbg-in-tests
+ allow-expect-in-tests
+ allow-mixed-uninlined-format-args
+ allow-one-hash-in-raw-strings
+ allow-print-in-tests
+ allow-private-module-inception
+ allow-unwrap-in-tests
+ allowed-idents-below-min-chars
+ allowed-scripts
+ arithmetic-side-effects-allowed
+ arithmetic-side-effects-allowed-binary
+ arithmetic-side-effects-allowed-unary
+ array-size-threshold
+ avoid-breaking-exported-api
+ await-holding-invalid-types
+ blacklisted-names
+ cargo-ignore-publish
+ cognitive-complexity-threshold
+ cyclomatic-complexity-threshold
+ disallowed-macros
+ disallowed-methods
+ disallowed-names
+ disallowed-types
+ doc-valid-idents
+ enable-raw-pointer-heuristic-for-send
+ enforced-import-renames
+ enum-variant-name-threshold
+ enum-variant-size-threshold
+ excessive-nesting-threshold
+ future-size-threshold
+ ignore-interior-mutability
+ large-error-threshold
+ literal-representation-threshold
+ matches-for-let-else
+ max-fn-params-bools
+ max-include-file-size
+ max-struct-bools
+ max-suggested-slice-pattern-length
+ max-trait-bounds
+ min-ident-chars-threshold
+ missing-docs-in-crate-items
+ msrv
+ pass-by-value-size-limit
+ semicolon-inside-block-ignore-singleline
+ semicolon-outside-block-ignore-multiline
+ single-char-binding-names-threshold
+ stack-size-threshold
+ standard-macro-braces
+ suppress-restriction-lint-in-const
+ third-party
+ too-large-for-stack
+ too-many-arguments-threshold
+ too-many-lines-threshold
+ trivial-copy-size-limit
+ type-complexity-threshold
+ unnecessary-box-size
+ unreadable-literal-lint-fractions
+ upper-case-acronyms-aggressive
+ vec-box-size-threshold
+ verbose-bit-mask-threshold
+ warn-on-all-wildcard-imports
+ --> $DIR/$DIR/clippy.toml:4:1
+ |
+LL | barfoo = 53
+ | ^^^^^^
+
+error: aborting due to 2 previous errors