summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_unknown_key/conf_unknown_key.stderr
blob: 2f9eaa5178c49729703ef6ba4731d598d7fd094d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
error: error reading Clippy's configuration file: unknown field `foobar`, expected one of
           absolute-paths-allowed-crates
           absolute-paths-max-segments
           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-dotfiles
           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
           enforce-iter-loop-reborrow
           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
           struct-field-name-threshold
           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:2:1
   |
LL | foobar = 42
   | ^^^^^^

error: error reading Clippy's configuration file: unknown field `barfoo`, expected one of
           absolute-paths-allowed-crates
           absolute-paths-max-segments
           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-dotfiles
           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
           enforce-iter-loop-reborrow
           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
           struct-field-name-threshold
           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