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: v7.26.0
Choose a base ref
...
head repository: eslint/eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.27.0
Choose a head ref
  • 12 commits
  • 66 files changed
  • 7 contributors

Commits on May 8, 2021

  1. Docs: Update README team and sponsors

    ESLint Jenkins committed May 8, 2021
    1 Configuration menu
    Copy the full SHA
    6a2ced8 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2021

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

Commits on May 15, 2021

  1. Sponsors: Sync README with website

    ESLint Jenkins committed May 15, 2021
    Configuration menu
    Copy the full SHA
    fe29f18 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2021

  1. Sponsors: Sync README with website

    ESLint Jenkins committed May 16, 2021
    Configuration menu
    Copy the full SHA
    2466a05 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2021

  1. Chore: Fix typo in large.js (#14589)

    wether -> whether
    eltociear authored May 21, 2021
    Configuration menu
    Copy the full SHA
    967b1c4 View commit details
    Browse the repository at this point in the history
  2. Update: no-restricted-imports custom message for patterns (fixes #11843

    …) (#14580)
    
    * Update: no-restricted-imports rule with custom messages (fixes #11843)
    
    * Update docs/rules/no-restricted-imports.md
    
    Co-authored-by: Milos Djermanovic <[email protected]>
    
    * Update docs/rules/no-restricted-imports.md
    
    Co-authored-by: Milos Djermanovic <[email protected]>
    
    * Code review feedback - better test cases and schema change
    
    * Doc updates
    
    * Added correct/incorrect examples to docs
    
    Co-authored-by: Milos Djermanovic <[email protected]>
    lexholden and mdjermanovic authored May 21, 2021
    Configuration menu
    Copy the full SHA
    52655dd View commit details
    Browse the repository at this point in the history
  3. Chore: Remove lodash (#14287)

    * Chore: Update table to ^6.0.9
    
    * Chore: Remove lodash.last
    
    lodash.last(array)  ->  array[array.length - 1]
    
    * Chore: Remove lodash.get
    
    v = lodash.get(a, "b.c")  ->  if (a && a.b && a.b.c) v = a.b.c
    
    * Chore: Remove lodash.noop
    
    lodash.noop  ->  () => {}
    
    * Chore: Remove lodash.union
    
    https://exploringjs.com/impatient-js/ch_sets.html#union-a-b
    
    * Chore: Remove lodash.intersection
    
    https://exploringjs.com/impatient-js/ch_sets.html#intersection-a-b
    
    * Chore: Remove lodash.findLast
    
    lodash.findLast(array)  ->  [...array].reverse().find(_ =>_)
    
    * Chore: Remove lodash.overSome
    
    * Chore: Remove lodash.isPlainObject
    
    * Chore: Remove lodash.isString
    
    lodash.isString(str)  ->  typeof str === "string";
    
    * Chore: Remove lodash.range
    
    * Chore: Remove lodash.sortedLastIndex
    
    https://www.30secondsofcode.org/js/s/sorted-last-index
    
    * Chore: Remove lodash.sortedIndexBy
    
    https://www.30secondsofcode.org/js/s/sorted-index-by
    
    * Chore: Remove lodash.sample
    
    https://www.30secondsofcode.org/js/s/sample
    
    * Chore: Remove lodash.flatMap
    
    * Chore: Remove lodash.flatten
    
    * Chore: Remove lodash.template
    
    * Chore: Remove lodash.escapeRegExp
    
    Add the escape-string-regexp package
    
    * Chore: Remove lodash.isEqual
    
    Add the fast-deep-equal package
    
    * Chore: Remove lodash.merge
    
    Add the deep-extend package
    
    * Chore: Remove lodash.cloneDeep
    
    Add the clone package
    
    * Chore: Remove lodash.omit
    
    Add the omit package
    
    * Chore: Remove lodash.upperFirst
    
    Add the upper-case-first package
    
    * Chore: Remove lodash.memoize
    
    Add the fast-memoize package
    
    * Chore: Remove lodash.mapValues
    
    Add the map-values package
    
    * Chore: Remove lodash.flatten
    
    * Chore: Remove lodash
    
    * Chore: Replace arrays.flat()
    
    * Chore: Replace clone with rfdc
    
    * Chore: Add comment about map-values
    
    * Chore: Remove omit dependency
    
    * Chore: Remove rfdc dependency
    
    * Chore: Remove upper-case-first dependency
    
    * Chore: Remove fast-memoize dependency
    
    * Chore: Apply suggestions in lib/linter/node-event-generator.js
    
    Co-authored-by: Milos Djermanovic <[email protected]>
    
    * Chore: Add tests for upperCaseFirst
    
    * Chore: Remove map-values dependency
    
    * Chore: Apply review suggestions
    
    * Chore: Upgrade deep-extend to ^0.6.0
    
    * Chore: Replace deep-extend dependency with lodash.merge
    
    * Chore: Apply review suggestion
    
    * Chore: Simplify search code
    
    * Chore: Apply review suggestions
    
    Co-authored-by: Milos Djermanovic <[email protected]>
    stephenwade and mdjermanovic authored May 21, 2021
    Configuration menu
    Copy the full SHA
    c0f418e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    afe9569 View commit details
    Browse the repository at this point in the history
  5. Update: no-unused-vars false negative with comma operator (fixes #14325

    …) (#14354)
    
    * Fix: report error for sequence expression in no-unused-vars (fixes #14325)
    
    * Chore: add tests
    
    * Update: suggestions
    
    * Chore: refactor
    
    * Chore: refactor
    
    * Fix: logic
    
    * Chore: add tests
    snitin315 authored May 21, 2021
    Configuration menu
    Copy the full SHA
    9e9b5e0 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2021

  1. Configuration menu
    Copy the full SHA
    2c0868c View commit details
    Browse the repository at this point in the history
  2. Build: changelog update for 7.27.0

    ESLint Jenkins committed May 22, 2021
    Configuration menu
    Copy the full SHA
    ebd1292 View commit details
    Browse the repository at this point in the history
  3. 7.27.0

    ESLint Jenkins committed May 22, 2021
    Configuration menu
    Copy the full SHA
    18c791a View commit details
    Browse the repository at this point in the history
Loading