Skip to content

Commit

Permalink
chore: eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Nov 28, 2021
1 parent 93e5fbc commit 1efa2fa
Showing 1 changed file with 25 additions and 0 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,
'commonjs': true,
'es2021': true,
'node': true,
},
'extends': [
'plugin:react/recommended',
'google',
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaFeatures': {
'jsx': true,
},
'ecmaVersion': 13,
},
'plugins': [
'react',
'@typescript-eslint',
],
'rules': {
},
};

0 comments on commit 1efa2fa

Please sign in to comment.