Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support ESLint 8.x #70

Merged
merged 3 commits into from Oct 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -10,7 +10,7 @@ stages:
- lint
- test

env: SUPPORTED_ESLINT_MAJORS='6 7'
env: SUPPORTED_ESLINT_MAJORS='6 7 8'
jobs:
include:
- stage: lint
Expand Down
305 changes: 100 additions & 205 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -34,9 +34,9 @@
"devDependencies": {
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint": "^8.0.0-0",
MichaelDeBoey marked this conversation as resolved.
Show resolved Hide resolved
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-self": "^1.2.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test/packages/eslint-v6/package.json
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-json-v6",
"version": "0.1.0",
"description": "Integration for eslint-plugin-json against eslint-§",
"description": "Integration for eslint-plugin-json against ESLint v6",
"private": true,
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/packages/eslint-v7/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions test/packages/eslint-v7/package.json
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-json-v5",
"name": "eslint-plugin-json-v7",
"version": "0.1.0",
"description": "Integration for eslint-plugin-json against eslint v5",
"description": "Integration for eslint-plugin-json against ESLint v7",
"private": true,
"main": "index.js",
"scripts": {
Expand Down