Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update v2.3 blog post #11002

Merged
merged 3 commits into from Jun 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/blog/2021-05-09-2.3.0.md
Expand Up @@ -1843,12 +1843,12 @@ All matched files use Prettier code style!
Directories whose names happened to coincide with the properties of `Object.prototype` were ignored by Prettier CLI because of a classic bug (introduced in Prettier 2.0.0) with object properties not being checked for being own.

<!-- prettier-ignore -->
```sh
```console
# Prettier 2.2
$ prettier 'js/constructor/*.js' --write
$ prettier "js/constructor/*.js" --write
[error] No matching files. Patterns: js/constructor/*.js

# Prettier 2.3
prettier 'js/constructor/*.js' --write
$ prettier "js/constructor/*.js" --write
js/constructor/test.js 42ms
```