Skip to content

Commit

Permalink
add npm scripts, eslint, Prettier, gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
btholt committed May 1, 2019
1 parent 20a4751 commit 1e101fd
Show file tree
Hide file tree
Showing 5 changed files with 886 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": ["eslint:recommended", "prettier", "prettier/react"],
"plugins": [],
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
}
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ dist/
.env
.DS_Store
coverage/
.vscode/
.vscode/
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Loading

0 comments on commit 1e101fd

Please sign in to comment.