Skip to content

Commit

Permalink
fix: eslint for json plugin v3 instead of v4
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed Jun 11, 2024
1 parent e197c14 commit 7243ead
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/stack/core/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ module.exports = {
* - https://www.npmjs.com/package/@typescript-eslint/parser
*/
{
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
extends: ['plugin:@typescript-eslint/recommended'],
files: ['**/*.ts', '**/*.tsx'],
parserOptions: {
ecmaVersion: 2018,
Expand Down Expand Up @@ -48,7 +45,7 @@ module.exports = {
* - https://www.npmjs.com/package/eslint-plugin-json
*/
{
extends: ['plugin:json/recommended-legacy'],
extends: ['plugin:json/recommended'],
files: ['**/*.json'],
plugins: ['json'],
},
Expand Down

0 comments on commit 7243ead

Please sign in to comment.