Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
ESlintの設定を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
shoynoi committed Jun 22, 2020
1 parent 21173ea commit 136b911
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
extends: 'airbnb',
rules: {
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
'no-console': 0,
'no-alert': 0,
},
env: {
browser: true,
},
};

0 comments on commit 136b911

Please sign in to comment.