Skip to content

Commit

Permalink
fix(backend): fix lint parsing error in .json files (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
CeeJayyy007 authored and xamdoo committed Mar 1, 2024
1 parent d95c4ec commit cacf0ad
Show file tree
Hide file tree
Showing 3 changed files with 377 additions and 14 deletions.
29 changes: 17 additions & 12 deletions backend/.eslintrc.json
@@ -1,14 +1,19 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": ["standard", "prettier"],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:json/recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"no-undef": "off"
}
}

0 comments on commit cacf0ad

Please sign in to comment.