Skip to content

Commit

Permalink
add eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
mzrimsek committed Jun 14, 2021
1 parent 24e26d2 commit a24f18c
Show file tree
Hide file tree
Showing 8 changed files with 1,080 additions and 29 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.env*
15 changes: 15 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {

}
}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
.env*
dist
dist
.env*
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
dist
.env*
Loading

0 comments on commit a24f18c

Please sign in to comment.