-
Notifications
You must be signed in to change notification settings - Fork 6
Comparing changes
Open a pull request
base repository: npm/eslint-config
base: v4.0.2
head repository: npm/eslint-config
compare: v4.0.3
- 17 commits
- 21 files changed
- 5 contributors
Commits on Jul 13, 2023
-
chore: bump @npmcli/template-oss from 4.15.1 to 4.17.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.15.1 to 4.17.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.15.1...v4.17.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for e310707 - Browse repository at this point
Copy the full SHA e310707View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d5e9c1 - Browse repository at this point
Copy the full SHA 0d5e9c1View commit details
Commits on Jul 19, 2023
-
chore: bump @npmcli/template-oss from 4.17.0 to 4.18.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.17.0 to 4.18.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.17.0...v4.18.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for d0fc181 - Browse repository at this point
Copy the full SHA d0fc181View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2dd5976 - Browse repository at this point
Copy the full SHA 2dd5976View commit details
Commits on Sep 13, 2023
-
chore: bump @npmcli/template-oss from 4.18.0 to 4.18.1
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.18.0 to 4.18.1. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.18.0...v4.18.1) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 7032111 - Browse repository at this point
Copy the full SHA 7032111View commit details -
Configuration menu - View commit details
-
Copy full SHA for 45d13a5 - Browse repository at this point
Copy the full SHA 45d13a5View commit details
Commits on Sep 18, 2023
-
chore: bump @npmcli/template-oss from 4.18.1 to 4.19.0
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.18.1 to 4.19.0. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.18.1...v4.19.0) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 7c2757f - Browse repository at this point
Copy the full SHA 7c2757fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4540676 - Browse repository at this point
Copy the full SHA 4540676View commit details
Commits on Dec 4, 2023
-
chore: bump @npmcli/template-oss from 4.19.0 to 4.21.1
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.19.0 to 4.21.1. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.19.0...v4.21.1) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for c137125 - Browse repository at this point
Copy the full SHA c137125View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3704d59 - Browse repository at this point
Copy the full SHA 3704d59View commit details
Commits on Dec 7, 2023
-
chore: bump @npmcli/template-oss from 4.21.1 to 4.21.3
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.21.1 to 4.21.3. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.21.1...v4.21.3) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for c765633 - Browse repository at this point
Copy the full SHA c765633View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82484a5 - Browse repository at this point
Copy the full SHA 82484a5View commit details
Commits on Apr 10, 2024
-
fix: don't enforce max-len on comments (#102)
Wrapping text content is not advised since it makes that text harder to read smoothly with screen readers.
Configuration menu - View commit details
-
Copy full SHA for 436f26c - Browse repository at this point
Copy the full SHA 436f26cView commit details -
fix: set args to after-used for no-unused-vars rule (#103)
This PR makes the following code failing linting. IMO this helps with refactoring and making sure arguments are not left in function calls. ```js // Lint error: "'c' is defined but never used." function unused (a, b, c) { return b } unused() ```
Luke Karrys authoredApr 10, 2024 1Configuration menu - View commit details
-
Copy full SHA for acd463d - Browse repository at this point
Copy the full SHA acd463dView commit details
Commits on Apr 21, 2024
-
chore: bump @npmcli/template-oss from 4.21.3 to 4.21.4
Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.21.3 to 4.21.4. - [Release notes](https://github.com/npm/template-oss/releases) - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md) - [Commits](npm/template-oss@v4.21.3...v4.21.4) --- updated-dependencies: - dependency-name: @npmcli/template-oss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 511b2b7 - Browse repository at this point
Copy the full SHA 511b2b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2706f7 - Browse repository at this point
Copy the full SHA f2706f7View commit details
Commits on Apr 22, 2024
-
🤖 I have created a release *beep* *boop* --- ## [4.0.3](v4.0.2...v4.0.3) (2024-04-21) ### Bug Fixes * [`acd463d`](acd463d) [#103](#103) set args to after-used for no-unused-vars rule (#103) (@lukekarrys) * [`436f26c`](436f26c) [#102](#102) don't enforce max-len on comments (#102) (@wraithgar) ### Chores * [`f2706f7`](f2706f7) [#104](#104) postinstall for dependabot template-oss PR (@lukekarrys) * [`511b2b7`](511b2b7) [#104](#104) bump @npmcli/template-oss from 4.21.3 to 4.21.4 (@dependabot[bot]) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 535d236 - Browse repository at this point
Copy the full SHA 535d236View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v4.0.2...v4.0.3