Skip to content

Commit

Permalink
feature: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz committed Jan 31, 2024
1 parent 3c50137 commit 49bed87
Show file tree
Hide file tree
Showing 55 changed files with 6,402 additions and 5,506 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
Loading

0 comments on commit 49bed87

Please sign in to comment.