Skip to content

Commit

Permalink
Create .eslintrc.json
Browse files Browse the repository at this point in the history
  • Loading branch information
AravindRajeshkanna authored Sep 18, 2024
1 parent 9f27136 commit e600117
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"node": true,
"es2021": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "single"],
"no-unused-vars": ["warn"],
"no-console": "off"
}
}

0 comments on commit e600117

Please sign in to comment.