Skip to content

Commit

Permalink
Merge pull request #16 from armancodv/lint
Browse files Browse the repository at this point in the history
eslint
  • Loading branch information
armancodv committed Dec 3, 2021
2 parents 026aac8 + 47ff768 commit 71f7708
Show file tree
Hide file tree
Showing 57 changed files with 1,606 additions and 1,004 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
'env': {
'browser': true,
'es2021': true,
},
'extends': [
'plugin:react/recommended',
'google',
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaFeatures': {
'jsx': true,
},
'ecmaVersion': 12,
'sourceType': 'module',
},
'plugins': [
'react',
'@typescript-eslint',
],
'rules': {
'require-jsdoc': 0,
},
};
Loading

0 comments on commit 71f7708

Please sign in to comment.