Skip to content

Commit

Permalink
chore: fix CHANGELOG.md formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Jul 17, 2024
1 parent 24288c7 commit 51324d9
Showing 1 changed file with 5 additions and 5 deletions.
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 51324d9

Please sign in to comment.