Skip to content

Commit

Permalink
missing eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeniau committed Apr 24, 2023
1 parent eb41a47 commit 72cf483
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
env: {
es2021: true,
node: true,
},
extends: ['plugin:react/recommended', 'standard-with-typescript', 'prettier'],
overrides: [],
parserOptions: {
project: './tsconfig.json',
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['react'],
rules: {},
settings: {
react: {
version: 'detect',
},
},
};

0 comments on commit 72cf483

Please sign in to comment.