Skip to content

Commit

Permalink
Update eslint and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
zcuric authored and Dafrok committed Sep 3, 2020
1 parent 1e00c66 commit cfac821
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Expand Up @@ -18,6 +18,7 @@ module.exports = {
rules: {
'arrow-parens': 'off',
'generator-star-spacing': 'off',
'no-debugger': isProduction ? 'error' : 'off'
'no-debugger': isProduction ? 'error' : 'off',
'no-prototype-builtins': 'off'
}
}
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
.DS_Store
node_modules
coverage
/dist

# local env files
Expand Down

0 comments on commit cfac821

Please sign in to comment.