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

Commits on Mar 30, 2020

  1. feat(eslint-plugin-internal): add plugin-test-formatting rule (#1821)

    The strings that are used for eslint plugins will not be checked for formatting.
    This can lead to diff noise as one contributor adjusts formatting, uses different quotes, etc.
    
    This rule just enforces the following:
    - all code samples are formatted with prettier
    - all single line tests do not use backticks
    - all multiline tests have:
      - no code on the first line
      - no code on the last line
      - the closing backtick indentation === property indentation
      - one of the following indentations:
        - no indentation at all
        - indentation of 1 + object indent
    
    examples of enforced style:
    ```ts
    ruleTester.run('foo', rule, {
      valid: [
        'const a = 1;',
        `
          const a = 1;
        `,
        `
    const a = 1;
        `,
        {
          code: 'const a = 1;',
        },
        {
          code: `
            const a = 1;
          `,
        },
        {
          code: `
    const a = 1;
          `,
        },
      ],
      invalid: [
        {
          code: 'const a = 1;',
        },
        {
          code: `
            const a = 1;
          `,
        },
        {
          code: `
    const a = 1;
          `,
        },
      ],
    });
    ```
    bradzacher authored Mar 30, 2020
    Configuration menu
    Copy the full SHA
    9b0023a View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2020

  1. Configuration menu
    Copy the full SHA
    8ec53a3 View commit details
    Browse the repository at this point in the history
  2. fix(eslint-plugin): [require-await] handle async generators (#1782)

    Co-authored-by: Brad Zacher <brad.zacher@gmail.com>
    anikethsaha and bradzacher authored Mar 31, 2020
    Configuration menu
    Copy the full SHA
    9642d9d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    188b689 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2020

  1. Configuration menu
    Copy the full SHA
    9d53c76 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1f0ff41 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. feat(eslint-plugin): sort members alphabetically (#263)

    Co-authored-by: Brad Zacher <brad.zacher@gmail.com>
    timkraut and bradzacher authored Apr 3, 2020
    Configuration menu
    Copy the full SHA
    485e902 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ab8572e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d304a05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ead0171 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c49d771 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2020

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

Commits on Apr 5, 2020

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

Commits on Apr 6, 2020

  1. chore: publish v2.27.0

    JamesHenry committed Apr 6, 2020
    Configuration menu
    Copy the full SHA
    bed7743 View commit details
    Browse the repository at this point in the history
Loading