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: azeemba/eslint-plugin-json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.1
Choose a base ref
...
head repository: azeemba/eslint-plugin-json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10a1cac3e9fa38c368e6f37e804ac12c245bfae4
Choose a head ref
  • 9 commits
  • 13 files changed
  • 3 contributors

Commits on May 16, 2020

  1. Fix spelling typos in tests

    edg2s authored and azeemba committed May 16, 2020
    Copy the full SHA
    bcb5f9f View commit details

Commits on May 20, 2020

  1. Copy the full SHA
    bc43516 View commit details
  2. Copy the full SHA
    ac1f44e View commit details
  3. Merge pull request #46 from AdrieanKhisbe/integration-test-against-se…

    …veral-eslint-majors 🧪
    
    Integration tests against several eslint majors:
    This PR improves tests and CI to ensure plugin working for different eslint major ranges.
    
    So far, eslint v6 is supported for all supported node ranges (8 to 14 (14 introduced in this PR)).
    and eslint v7 supported started from node 10. (which is an eslint v7 pre-requesite)
    AdrieanKhisbe authored May 20, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4499104 View commit details

Commits on Jul 21, 2020

  1. Copy the full SHA
    eadd7c6 View commit details
  2. Copy the full SHA
    c73d1ee View commit details
  3. Copy the full SHA
    ea483cb View commit details
  4. Copy the full SHA
    aa5c9ba View commit details

Commits on Jul 22, 2020

  1. Merge pull request #50 from AdrieanKhisbe/package-refresh-2020-summer 🌬️

    Summer Package refresh 2020:
    Batch of package updates
    
    Replace #47, #48, #49 and #51
    AdrieanKhisbe authored Jul 22, 2020
    Copy the full SHA
    10a1cac View commit details
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/packages
55 changes: 45 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,49 @@
language: node_js
node_js:
- '8.10'
- '8'
- '10'
- '12'
install:
- npm install
script:
- npm run lint
- npm test
node_js: '10'

after_success:
- codecov

cache: npm

stages:
- lint
- test

jobs:
include:
- stage: lint
name: lint
script: npm run lint

- &test
stage: test
name: test-plugin-node10
node_js: '10'
install:
- npm install
- npm run integration install $SUPPORTED_ESLINT_MAJORS
script:
- npm test
- npm run integration test $SUPPORTED_ESLINT_MAJORS
env: SUPPORTED_ESLINT_MAJORS='6 7'

- <<: *test
name: test-plugin-node12
node_js: '12'
env: SUPPORTED_ESLINT_MAJORS='6 7'

- <<: *test
name: test-plugin-node8.10
node_js: '8.10'
env: SUPPORTED_ESLINT_MAJORS=6

- <<: *test
name: test-plugin-node8
node_js: '8'
env: SUPPORTED_ESLINT_MAJORS=6

- <<: *test
name: test-plugin-node14
node_js: '14'
env: SUPPORTED_ESLINT_MAJORS='6 7'
Loading