Skip to content

Commit

Permalink
docs: add changelogs for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Apr 25, 2024
1 parent f95d8a5 commit fdb64b7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!--
## {version}
⚠️ Breaking change
✨ New
🐞 Fix
♻️ Refactor / Enhance / Update
-->

# Change Log

## 0.2.0

### ♻️ Update

- Update `trailingComma` from "none", to "all".
- Update `printWidth` from 180, to 120.
- Update JSON files to prefer spaces (4) instead of tabs.
- Update `.editorconfig` file to align with new configuration.
- Remove automatic multiline array formatting in favour of manual formatting.

## 0.1.0

### ✨ New

- Add recommended prettier configuration.
- Add `.editorconfig` file.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,8 @@ npm install @elgato/prettier-config --save-dev

2. Edit your `package.json` to reference the configuration.

```jsonc
{
// ...
"prettier": "@elgato/prettier-config"
}
```json
"prettier": "@elgato/prettier-config"
```

## Configuration
Expand Down Expand Up @@ -65,7 +62,7 @@ Overriding configuration can be achieved by removing the `prettier` entry from `
module.exports = {
...require("@elgato/prettier-config"),
tabWidth: 2,
useTabs: false
useTabs: false,
};
```

Expand Down

0 comments on commit fdb64b7

Please sign in to comment.