diff --git a/README.md b/README.md index 5900012..2baeeca 100644 --- a/README.md +++ b/README.md @@ -299,7 +299,7 @@ gulp.src(['**/*.js','!node_modules/**']) Format all linted files once. This should be used in the stream after piping through `eslint`; otherwise, this will find no ESLint results to format. -The `formatter` argument may be a `string`, `Function`, or `undefined`. As a `string`, a formatter module by that name or path will be resolved as a module, relative to the current working directory, or as one of the [ESLint-provided formatters](https://github.com/eslint/eslint/tree/main/lib/cli-engine/formatters). If `undefined`, the ESLint "stylish" formatter will be resolved. A `Function` will be called with an `Array` of file linting results to format. +The `formatter` argument may be a `string`, `Function`, or `undefined`. As a `string`, a formatter module by that name or path will be resolved as a module, relative to the current working directory, or as one of the [built-in ESLint formatters](https://eslint.org/docs/user-guide/formatters/#eslint-formatters). If `undefined`, the ESLint "stylish" formatter will be resolved. A `Function` will be called with an `Array` of file linting results to format. ```javascript // use the default "stylish" ESLint formatter