-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Comparing changes
Open a pull request
base repository: eslint/eslint
base: v8.48.0
head repository: eslint/eslint
compare: v8.49.0
- 16 commits
- 59 files changed
- 8 contributors
Commits on Aug 29, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for f591d2c - Browse repository at this point
Copy the full SHA f591d2cView commit details
Commits on Aug 30, 2023
-
test: replace Karma with Webdriver.IO (#17126)
* test: replace Karma with Webdriver.IO The current test framework for browser testing (Karma) is not maintained anymore and WebdriverIO provides a more modern stack that allows to test in different browser. This patch replaces these test frameworks. fixes: #17009 * update webdriverio deps * PR feedback * adjust tests * build eslint before running tests * make test file an esm file * revert more esm changes * make it work * remove return value * custom log dir for wdio tests * auto detect chromedriver * bump timeout, store logs * bump timeout again * update wdio deps * update wdio deps * set log level to trace * update wdio deps and unskip tests * no need to have this be an async test * update deps * make path spec file explicit * remove Chromedriver deps * removed wdio command
1Configuration menu - View commit details
-
Copy full SHA for 926a286 - Browse repository at this point
Copy the full SHA 926a286View commit details
Commits on Sep 1, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for a40fa50 - Browse repository at this point
Copy the full SHA a40fa50View commit details -
GitHub Actions Bot committed
Sep 1, 2023 1Configuration menu - View commit details
-
Copy full SHA for cd7da5c - Browse repository at this point
Copy the full SHA cd7da5cView commit details -
docs: add typescript template (#17500)
* docs: add typescript template * fix: formatting * chore: update docs with AndreaPontrandolfo's findings * Update no-import-assign.md * chore: update no-redeclare * fix: update TS code numbers * feat: cleanup typescript error codes * Update docs/src/_includes/layouts/doc.html Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * Update docs/src/rules/no-redeclare.md Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * Update docs/src/rules/no-import-assign.md Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * Update docs/src/rules/no-invalid-this.md Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com> * fix: formatting error --------- Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
1Configuration menu - View commit details
-
Copy full SHA for 032c4b1 - Browse repository at this point
Copy the full SHA 032c4b1View commit details
Commits on Sep 2, 2023
-
feat: add new
enforce
option tolines-between-class-members
(#17462)* feat: add new \`enforce\` option (`lines-between-class-members`) * test: add cases for enforce with exceptAfterSingleLine option * docs: add `enforce` option * docs: fix example * fix: update schema to make enforce option required * refactor: remove redundant if condition * refactor: remove redundant if condition * docs: add suggestions Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * test: add cases where multiple config objects match a pair --------- Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
1Configuration menu - View commit details
-
Copy full SHA for acb7df3 - Browse repository at this point
Copy the full SHA acb7df3View commit details -
feat: Emit deprecation warnings in RuleTester (#17527)
* feat: Emit deprecation warnings in RuleTester Emits deprecation warnings when using methods on `context` that are deprecated. Refs #17520 * Revert flat-rule-tester * Fix linting error
1Configuration menu - View commit details
-
Copy full SHA for 32b2327 - Browse repository at this point
Copy the full SHA 32b2327View commit details
Commits on Sep 4, 2023
-
ci: bump actions/checkout from 3 to 4 (#17530)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1Configuration menu - View commit details
-
Copy full SHA for 203a971 - Browse repository at this point
Copy the full SHA 203a971View commit details
Commits on Sep 6, 2023
-
docs: update
no-promise-executor-return
examples (#17529)* docs: update `no-promise-executor-return` examples * docs: update example
1Configuration menu - View commit details
-
Copy full SHA for de86b3b - Browse repository at this point
Copy the full SHA de86b3bView commit details
Commits on Sep 7, 2023
-
feat: Implement onUnreachableCodePathStart/End (#17511)
* feat: Implement onUnreachableCodePathStart/End refs # 17457 * Finish up onUnreachable* work * Refactor to account for out-of-order events * Update lib/rules/no-unreachable.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update lib/rules/no-unreachable.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update tests/lib/linter/code-path-analysis/code-path-analyzer.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Incorporate feedback * Clean up rules and docs * Update docs * Fix code example * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update lib/rules/consistent-return.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update lib/rules/no-this-before-super.js Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Fix examples * Add deprecation notices to RuleTester/FlatRuleTester * Update config * Add deprecation notices to RuleTester/FlatRuleTester * Fix lint warning * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Update docs/src/extend/code-path-analysis.md Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com> * Fix test --------- Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
1Configuration menu - View commit details
-
Copy full SHA for da09f4e - Browse repository at this point
Copy the full SHA da09f4eView commit details
Commits on Sep 8, 2023
-
GitHub Actions Bot committed
Sep 8, 2023 1Configuration menu - View commit details
-
Copy full SHA for ecfb54f - Browse repository at this point
Copy the full SHA ecfb54fView commit details -
chore: package.json update for @eslint/js release
ESLint Jenkins committedSep 8, 2023 1Configuration menu - View commit details
-
Copy full SHA for cd39508 - Browse repository at this point
Copy the full SHA cd39508View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for cac45d0 - Browse repository at this point
Copy the full SHA cac45d0View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for b7621c3 - Browse repository at this point
Copy the full SHA b7621c3View commit details -
Build: changelog update for 8.49.0
ESLint Jenkins committedSep 8, 2023 1Configuration menu - View commit details
-
Copy full SHA for d498a51 - Browse repository at this point
Copy the full SHA d498a51View commit details -
ESLint Jenkins committed
Sep 8, 2023 1Configuration menu - View commit details
-
Copy full SHA for 55c1685 - Browse repository at this point
Copy the full SHA 55c1685View 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 v8.48.0...v8.49.0