Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d3c5d8c

Browse files
authoredOct 11, 2023
Merge pull request TheOdinProject#385 from bEluga0000/first-contribution
Add eslint to project
2 parents a9f93b1 + f45f9a2 commit d3c5d8c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
 

‎.eslintrc.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": "standard",
7+
"overrides": [
8+
{
9+
"env": {
10+
"node": true
11+
},
12+
"files": [
13+
".eslintrc.{js,cjs}"
14+
],
15+
"parserOptions": {
16+
"sourceType": "script"
17+
}
18+
}
19+
],
20+
"parserOptions": {
21+
"ecmaVersion": "latest"
22+
},
23+
"rules": {
24+
}
25+
}

0 commit comments

Comments
 (0)
Failed to load comments.