Skip to content

Commit

Permalink
chore: use double quote for changesets/changelog files
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Jan 15, 2025
1 parent aa5b59f commit e272d7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"overrides": [
{
"files": ".changeset/**/*",
"files": [".changeset/**/*", "CHANGELOG.md"],
"options": {
"singleQuote": false
}
Expand Down
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
```json5
[
{
files: ['**/*.md'],
rules: { 'prettier/prettier': ['error', { parser: 'markdown' }] },
files: ["**/*.md"],
rules: { "prettier/prettier": ["error", { parser: "markdown" }] },
},
{
files: ['**/*.mdx'],
rules: { 'prettier/prettier': ['error', { parser: 'mdx' }] },
files: ["**/*.mdx"],
rules: { "prettier/prettier": ["error", { parser: "mdx" }] },
},
]
```
Expand All @@ -59,7 +59,7 @@

```js
// eslint.config.js
const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended');
const eslintPluginPrettierRecommended = require("eslint-plugin-prettier/recommended");

module.exports = [
// Any other config imports go at the top
Expand Down

0 comments on commit e272d7c

Please sign in to comment.