Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ryota-murakami committed Nov 12, 2022
1 parent 76abdba commit e4c5b36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
node: true,
es2021: true,
},
extends: ['plugin:jsx-a11y/recommended'],
globals: {
JSX: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest'
ecmaVersion: 'latest',
},
plugins: [
'jsx-a11y',
Expand All @@ -26,7 +26,7 @@ module.exports = {
'@typescript-eslint/consistent-type-imports': 'warn',
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/prefer-as-const': 'warn',
'eqeqeq': ['error', 'always'],
eqeqeq: ['error', 'always'],
'import/default': 'error',
'import/export': 'error',
'import/named': 'error',
Expand Down

0 comments on commit e4c5b36

Please sign in to comment.