Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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:eslint/eslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:v8.48.0
Choose a base ref
Loading
...
head repository:eslint/eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:v8.49.0
Choose a head ref
Loading
  • 16commits
  • 59files changed
  • 8contributors

Commits on Aug 29, 2023

  1. 1Configuration menu
    Copy the full SHA
    f591d2cView commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. test: replace Karma with Webdriver.IO (#17126)

    * test: replace Karma with Webdriver.IOThe 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
    @christian-bromann
    christian-bromann authoredAug 30, 2023
    1Configuration menu
    Copy the full SHA
    926a286View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. 1Configuration menu
    Copy the full SHA
    a40fa50View commit details
    Browse the repository at this point in the history
  2. docs: Update README

    GitHub Actions Bot committedSep 1, 2023
    1Configuration menu
    Copy the full SHA
    cd7da5cView commit details
    Browse the repository at this point in the history
  3. 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.htmlCo-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>* Update docs/src/rules/no-redeclare.mdCo-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>* Update docs/src/rules/no-import-assign.mdCo-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>* Update docs/src/rules/no-invalid-this.mdCo-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>* fix: formatting error---------Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
    @Zamiell@nzakas
    Zamiell andnzakas authoredSep 1, 2023
    1Configuration menu
    Copy the full SHA
    032c4b1View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2023

  1. feat: add newenforceoption 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 suggestionsCo-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>
    @snitin315@mdjermanovic
    snitin315 andmdjermanovic authoredSep 2, 2023
    1Configuration menu
    Copy the full SHA
    acb7df3View commit details
    Browse the repository at this point in the history
  2. feat: Emit deprecation warnings in RuleTester (#17527)

    * feat: Emit deprecation warnings in RuleTesterEmits deprecation warnings when using methods on `context` that aredeprecated.Refs#17520* Revert flat-rule-tester* Fix linting error
    @nzakas
    nzakas authoredSep 2, 2023
    1Configuration menu
    Copy the full SHA
    32b2327View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. 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>
    @dependabot
    dependabot[bot] authoredSep 4, 2023
    1Configuration menu
    Copy the full SHA
    203a971View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. docs: updateno-promise-executor-returnexamples (#17529)

    * docs: update `no-promise-executor-return` examples* docs: update example
    @snitin315
    snitin315 authoredSep 6, 2023
    1Configuration menu
    Copy the full SHA
    de86b3bView commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. feat: Implement onUnreachableCodePathStart/End (#17511)

    * feat: Implement onUnreachableCodePathStart/Endrefs # 17457* Finish up onUnreachable* work* Refactor to account for out-of-order events* Update lib/rules/no-unreachable.jsCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update lib/rules/no-unreachable.jsCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update tests/lib/linter/code-path-analysis/code-path-analyzer.jsCo-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.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update docs/src/extend/code-path-analysis.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update docs/src/extend/code-path-analysis.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update lib/rules/consistent-return.jsCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update lib/rules/no-this-before-super.jsCo-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.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update docs/src/extend/code-path-analysis.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Update docs/src/extend/code-path-analysis.mdCo-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>* Fix test---------Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    @nzakas@mdjermanovic
    nzakas andmdjermanovic authoredSep 7, 2023
    1Configuration menu
    Copy the full SHA
    da09f4eView commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. docs: Update README

    GitHub Actions Bot committedSep 8, 2023
    1Configuration menu
    Copy the full SHA
    ecfb54fView commit details
    Browse the repository at this point in the history
  2. chore: package.json update for @eslint/js release

    ESLint Jenkins committedSep 8, 2023
    1Configuration menu
    Copy the full SHA
    cd39508View commit details
    Browse the repository at this point in the history
  3. 1Configuration menu
    Copy the full SHA
    cac45d0View commit details
    Browse the repository at this point in the history
  4. 1Configuration menu
    Copy the full SHA
    b7621c3View commit details
    Browse the repository at this point in the history
  5. Build: changelog update for 8.49.0

    ESLint Jenkins committedSep 8, 2023
    1Configuration menu
    Copy the full SHA
    d498a51View commit details
    Browse the repository at this point in the history
  6. 8.49.0

    ESLint Jenkins committedSep 8, 2023
    1Configuration menu
    Copy the full SHA
    55c1685View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp