Skip to content

Commit

Permalink
Add eslint to project
Browse files Browse the repository at this point in the history
  • Loading branch information
bEluga0000 committed Sep 28, 2023
1 parent a9f93b1 commit f45f9a2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": "standard",
"overrides": [
{
"env": {
"node": true
},
"files": [
".eslintrc.{js,cjs}"
],
"parserOptions": {
"sourceType": "script"
}
}
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
}

0 comments on commit f45f9a2

Please sign in to comment.