Skip to content

Commit

Permalink
chore: se agrega eslint para observabilidad de errores
Browse files Browse the repository at this point in the history
  • Loading branch information
ramirezsebas committed Feb 3, 2024
1 parent 705c3e8 commit 91c88da
Show file tree
Hide file tree
Showing 3 changed files with 840 additions and 0 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,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
Loading

0 comments on commit 91c88da

Please sign in to comment.