8000 Comparing v8.4.1...v8.5.0 · eslint/eslint · GitHub
[go: up one dir, main page]

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: eslint/eslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.4.1
Choose a base ref
...
head repository: eslint/eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.5.0
Choose a head ref
  • 15 commits
  • 22 files changed
  • 9 contributors

Commits on Dec 7, 2021

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

Commits on Dec 8, 2021

  1. docs: update CLA info (#15370)

    * docs: udpate CLA info
    
    * docs: update CONTRIBUTING.md
    
    Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
    
    * fix: lint
    
    Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
    snitin315 and nzakas authored Dec 8, 2021
    Configuration menu
    Copy the full SHA
    74cf0a0 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. feat: add prefer-object-has-own rule (#15346)

    * feat: add `prefer-object-has-own` rule
    
    Co-authored-by: Gautam Arora <gautamarora6248@gmail.com>
    
    * test: add more valid cases
    
    * fix: cover more cases
    
    * chore: add jsdoc type annotation
    
    * fix: cover more cases
    
    * test: add more invalid test cases
    
    * fix: improve meta data
    
    * test: add assertions for location
    
    * docs: update `prefer-object-has-own`
    
    * fix: report for Object with global scope only
    
    * docs: add rule id
    
    * feat: add fixer for `prefer-object-has-own` rule
    
    * chore: udpate comment
    
    * chore: apply suggestions
    
    * docs: udpate
    
    * docs: add example
    
    * chore: update comment
    
    * test: add another valid test case
    
    * docs: fix typo
    
    * fix: improve autofix
    
    * fix: refactor logic and avoid false positives
    
    * refactor: code
    
    * docs: apply latest feedback
    
    * refactor: apply the latest suggestions
    
    * refactor: apply the latest feedback
    
    * test: add more cases
    
    * docs: update
    
    * docs: apply suggestions from code review
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    Co-authored-by: Gautam Arora <gautamarora6248@gmail.com>
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    3 people authored Dec 11, 2021
    Configuration menu
    Copy the full SHA
    eafaf52 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2021

  1. Configuration menu
    Copy the full SHA
    f2c7ba6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a53e59e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4559a0 View commit details
    Browse the repository at this point in the history
  4. fix: improve autofix of prefer-object-has-own (#15419)

    * fix: improve autofix of `prefer-object-has-own`
    
    * fix: cover more cases
    
    * test: add more cases
    
    * test: add more test cases
    
    * fix: avoid unnecessary space in autofix output
    
    * refactor: code
    
    * refactor: apply suggestion
    snitin315 authored Dec 14, 2021
    Configuration menu
    Copy the full SHA
    f13d4a6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    225f211 View commit details
    Browse the repository at this point in the history
  6. docs: add destructuring examples for computed-property-spacing (#15423

    )
    
    * docs: add destructuring examples for `computed-property-spacing`
    
    * docs: suggestions from code review
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    snitin315 and mdjermanovic authored Dec 14, 2021
    Configuration menu
    Copy the full SHA
    3928175 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. fix: do not report global references in id-match rule (#15420)

    * fix: do not report global built-in references in `id-match` rule
    
    Fixes #15395
    
    * test: add more cases
    
    * refactor: code
    
    * fix: do not report global references
    
    * fix: use the global scope
    
    * refactor: move scope call to `Program`
    snitin315 authored Dec 15, 2021
    Configuration menu
    Copy the full SHA
    981fb48 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2021

  1. Configuration menu
    Copy the full SHA
    314c84c View commit details
    Browse the repository at this point in the history
  2. feat: Suggestions support for prefer-regex-literals (#15077)

    * New: Autofix support to prefer-regex-literals
    
    Fixes #15029
    
    * Use canTokensBeAdjacent
    
    * Fix for NULL
    
    * Switch to validatePattern and validateFlags
    
    * Fix for unicode
    
    * Apply a few suggestions from code review
    
    * Fix: Double Escaping?
    
    * Tests and fixes for no-unicode regexp
    
    * New: Drop usage of getStaticValue
    
    * Fix: Remove whitespace changes, fix jsdoc type, and convert to suggestion for unexpectedRegExp
    
    * New: More test cases for .
    
    * Remove meta.docs.suggestion
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * Fix linting
    
    * Don't fix NULL
    
    * Remove redundant wrapping suggestions for now
    
    * String.raw can have problematic chars
    
    * Remove fixable
    
    * Fix messed up char increase
    
    * Apply suggestion from code review
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * chore: use characterNode.raw instead of characterNode.value
    
    * chore: do a bit of simplification of onCharacterEnter
    
    * Apply suggestions from code review
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * chore: more changes following code review
    
    * chore: Use reliable way of testing if spacing needed
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * diff msg for suggestion than main warning
    
    * chore: stricter testing
    
    * Apply suggestions from code review
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    Yash-Singh1 and mdjermanovic authored Dec 17, 2021
    Configuration menu
    Copy the full SHA
    94e77a6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7d832d4 View commit details
    Browse the repository at this point in the history
  4. Build: changelog update for 8.5.0

    ESLint Jenkins committed Dec 17, 2021
    Configuration menu
    Copy the full SHA
    6ff5609 View commit details
    Browse the repository at this point in the history
  5. 8.5.0

    ESLint Jenkins committed Dec 17, 2021
    Configuration menu
    Copy the full SHA
    9d951ac View commit details
    Browse the repository at this point in the history
Loading
0