Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mixmaxhq/prettier-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: mixmaxhq/prettier-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.0
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on May 23, 2022

  1. Copy the full SHA
    0c48750 View commit details
  2. Merge pull request #18 from mixmaxhq/armen/update-bracket-same-line

    feat: set `bracketSameLine` to `false`
    aaavakian authored May 23, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4b4857b View commit details
  3. chore(release): 1.1.0 [skip ci]

    ## [1.1.0](v1.0.2...v1.1.0) (2022-05-23)
    
    ### Features
    
    * set `bracketSameLine` to `false` ([0c48750](0c48750))
    semantic-release-bot committed May 23, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bc3c6e6 View commit details
Showing with 11 additions and 3 deletions.
  1. +7 −0 CHANGELOG.md
  2. +2 −1 config.json
  3. +1 −1 package-lock.json
  4. +1 −1 package.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.1.0](https://github.com/mixmaxhq/prettier-config/compare/v1.0.2...v1.1.0) (2022-05-23)


### Features

* set `bracketSameLine` to `false` ([0c48750](https://github.com/mixmaxhq/prettier-config/commit/0c4875087838dd99e4271c984efba0d4ac5fedfc))

### [1.0.2](https://github.com/mixmaxhq/prettier-config/compare/v1.0.1...v1.0.2) (2021-09-09)


3 changes: 2 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -4,10 +4,11 @@
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"overrides": [
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mixmaxhq/prettier-config",
"version": "1.0.2",
"version": "1.1.0",
"description": "The prettier config that Mixmax uses",
"main": "config.json",
"scripts": {