We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Linter.FlatConfig
Linter.Config
1 parent 2738322 commit 3eff709Copy full SHA for 3eff709
1 file changed
docs/src/use/configure/configuration-files.md
@@ -534,7 +534,7 @@ export default [
534
"no-console": [0],
535
},
536
537
-] satisfies Linter.FlatConfig[];
+] satisfies Linter.Config[];
538
```
539
540
Here's an example in CommonJS format:
@@ -543,7 +543,7 @@ Here's an example in CommonJS format:
543
import type { Linter } from "eslint";
544
const eslint = require("@eslint/js");
545
546
-const config: Linter.FlatConfig[] = [
+const config: Linter.Config[] = [
547
eslint.configs.recommended,
548
{
549
rules: {
0 commit comments