You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This option causes ESLint to report inline config comments like `/* eslint rule-name: "error" */` whose rule severity and any options match what's already been configured.
766
+
767
+
***Argument Type**: String. One of the following values:
768
+
1.`off` (or `0`)
769
+
1.`warn` (or `1`)
770
+
1.`error` (or `2`)
771
+
***Multiple Arguments**: No
772
+
***Default Value**: By default, `linterOptions.reportUnusedInlineConfigs` configuration setting is used (which defaults to `"off"`).
773
+
774
+
This can be useful to keep files clean and devoid of misleading clutter.
775
+
Inline config comments are meant to change ESLint's behavior in some way: if they change nothing, there is no reason to leave them in.
Copy file name to clipboardexpand all lines: docs/src/use/configure/configuration-files.md
+21
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ Each configuration object contains all of the information ESLint needs to execut
74
74
*`linterOptions` - An object containing settings related to the linting process.
75
75
*`noInlineConfig` - A Boolean value indicating if inline configuration is allowed.
76
76
*`reportUnusedDisableDirectives` - A severity string indicating if and how unused disable and enable directives should be tracked and reported. For legacy compatibility, `true` is equivalent to `"warn"` and `false` is equivalent to `"off"`. (default: `"warn"`).
77
+
*`reportUnusedInlineConfigs` - A severity string indicating if and how unused inline configs should be tracked and reported. (default: `"off"`)
77
78
*`processor` - Either an object containing `preprocess()` and `postprocess()` methods or a string indicating the name of a processor inside of a plugin (i.e., `"pluginName/processorName"`).
78
79
*`plugins` - An object containing a name-value mapping of plugin names to plugin objects. When `files` is specified, these plugins are only available to the matching files.
79
80
*`rules` - An object containing the configured rules. When `files` or `ignores` are specified, these rule configurations are only available to the matching files.
@@ -301,6 +302,26 @@ You can override this setting using the [`--report-unused-disable-directives`](.
301
302
302
303
For legacy compatibility, `true` is equivalent to `"warn"` and `false` is equivalent to `"off"`.
303
304
305
+
#### Reporting Unused Inline Configs
306
+
307
+
Inline config comments such as `/* eslint rule-name: "error" */` are used to change ESLint rule severity and/or options around certain portions of code.
308
+
As a project's ESLint configuration file changes, it's possible for these directives to no longer be different from what was already set.
309
+
You can enable reporting of these unused inline config comments by setting the `reportUnusedInlineConfigs` option to a severity string, as in this example:
310
+
311
+
```js
312
+
// eslint.config.js
313
+
exportdefault [
314
+
{
315
+
files: ["**/*.js"],
316
+
linterOptions: {
317
+
reportUnusedInlineConfigs:"error"
318
+
}
319
+
}
320
+
];
321
+
```
322
+
323
+
You can override this setting using the [`--report-unused-inline-configs`](../command-line-interface#--report-unused-inline-configs) command line option.
324
+
304
325
### Configuring Rules
305
326
306
327
You can configure any number of rules in a configuration object by add a `rules` property containing an object with your rule configurations. The names in this object are the names of the rules and the values are the configurations for each of those rules. Here's an example:
To report unused `eslint` inline config comments (those that don't change anything from what was already configured), use the `reportUnusedInlineConfigs` setting. For example:
79
+
80
+
```js
81
+
// eslint.config.js
82
+
exportdefault [
83
+
{
84
+
linterOptions: {
85
+
reportUnusedInlineConfigs:"error"
86
+
}
87
+
}
88
+
];
89
+
```
90
+
91
+
This setting defaults to `"off"`.
92
+
93
+
This setting is similar to the [`--report-unused-inline-configs`](../command-line-interface#--report-unused-inline-configs) CLI option.
94
+
76
95
### Using Configuration Files
77
96
78
97
To configure rules inside of a [configuration file](./configuration-files#configuration-file), use the `rules` key along with an error level and any options you want to use. For example:
@@ -345,7 +364,7 @@ You can also use the [`--no-inline-config`](../command-line-interface#--no-inlin
345
364
346
365
#### Report unused `eslint-disable` comments
347
366
348
-
To report unused `eslint-disable` comments, use the `reportUnusedDisableDirectives` setting. For example:
367
+
To report unused `eslint-disable` comments (those that disable rules which would not report on the disabled line), use the `reportUnusedDisableDirectives` setting. For example:
* @property {string | null} warnInlineConfig The config name what `noInlineConfig` setting came from. If `noInlineConfig` setting didn't exist, this is null. If this is a config name, then the linter warns directive comments.
* @property {StringSeverity} reportUnusedDisableDirectives Severity to report unused disable directives, if not "off" (boolean values were normalized).
147
+
* @property {StringSeverity} reportUnusedInlineConfigs Severity to report unused inline configs, if not "off".
0 commit comments