Skip to content
This repository was archived by the owner on Oct 24, 2019. It is now read-only.

Commit 904fec8

Browse files
author
DongWoo Kim
committed
chore: add eslint config files
1 parent 32c5698 commit 904fec8

File tree

2 files changed

+576
-0
lines changed

2 files changed

+576
-0
lines changed

.eslintrc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
parser: 'babel-eslint',
3+
parserOptions: {
4+
ecmaVersion: 7,
5+
sourceType: 'module',
6+
ecmaFeatures: {
7+
jsx: true
8+
}
9+
},
10+
extends: ['tui/es6', 'plugin:react/recommended', 'plugin:prettier/recommended'],
11+
plugins: ['react', 'prettier'],
12+
rules: {
13+
'react/prop-types': 0
14+
},
15+
settings: {
16+
react: {
17+
version: 'detect'
18+
}
19+
}
20+
};

0 commit comments

Comments
 (0)