Skip to content

Commit

Permalink
chore: Add eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hupe1980 committed Dec 28, 2019
1 parent fe699e9 commit ee9ca6c
Show file tree
Hide file tree
Showing 8 changed files with 1,232 additions and 65 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/.git
/coverage
/lib

node_modules
5 changes: 5 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = {
extends: ['react-app', 'plugin:prettier/recommended']
};
8 changes: 8 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

module.exports = {
semi: true,
trailingComma: 'all',
singleQuote: true,
tabWidth: 4
};
Loading

0 comments on commit ee9ca6c

Please sign in to comment.