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: prettier/eslint-config-prettier
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.0.1
Choose a base ref
...
head repository: prettier/eslint-config-prettier
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10.0.2
Choose a head ref
  • 4 commits
  • 6 files changed
  • 4 contributors

Commits on Jan 13, 2025

  1. chore: add FUNDING.yml

    JounQin committed Jan 13, 2025
    Copy the full SHA
    9160ca2 View commit details

Commits on Feb 26, 2025

  1. ci: bump github actions (#300)

    Fdawgs authored Feb 26, 2025
    Copy the full SHA
    b5b913d View commit details
  2. chore(package): explicitly declare js module type (#299)

    Co-authored-by: JounQin <admin@1stg.me>
    Fdawgs and JounQin authored Feb 26, 2025
    Copy the full SHA
    e750edc View commit details
  3. chore: release eslint-config-prettier (#301)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] authored Feb 26, 2025
    Copy the full SHA
    e2015cd View commit details
Showing with 32 additions and 10 deletions.
  1. +15 −0 .github/FUNDING.yml
  2. +3 −3 .github/workflows/check.yml
  3. +4 −4 .github/workflows/test.yml
  4. +6 −0 CHANGELOG.md
  5. +2 −2 package-lock.json
  6. +2 −1 package.json
15 changes: 15 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
github:
- prettier-eslint
- JounQin
- 1stG
- rx-ts
- un-ts
patreon: PrettierESLint
open_collective: eslint-config-prettier
custom:
- https://opencollective.com/prettier-eslint
- https://opencollective.com/1stG
- https://opencollective.com/rxts
- https://opencollective.com/unts
- https://patreon.com/1stG
- https://afdian.net/@JounQin
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -19,17 +19,17 @@ jobs:
node-version: [20]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -16,20 +16,20 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [16, 18, 20]
node-version: [16, 18, 20, 22]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# eslint-config-prettier

## 10.0.2

### Patch Changes

- [#299](https://github.com/prettier/eslint-config-prettier/pull/299) [`e750edc`](https://github.com/prettier/eslint-config-prettier/commit/e750edc530c816e0b3ffabfab1f4e46532bccbfe) Thanks [@Fdawgs](https://github.com/Fdawgs)! - chore(package): explicitly declare js module type

## 10.0.0

### Major Changes
4 changes: 2 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "eslint-config-prettier",
"version": "10.0.1",
"version": "10.0.2",
"license": "MIT",
"author": "Simon Lydell",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"repository": "prettier/eslint-config-prettier",
"bin": "build/bin/cli.js",
"main": "build/index.js",
"type": "commonjs",
"files": [
"build"
],