Skip to content

Commit e5d487c

Browse files
committedMay 19, 2019
initial commit
0 parents  commit e5d487c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+21046
-0
lines changed
 

‎.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
node_modules
3+
coverage

‎.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
env: {
3+
jest: true,
4+
browser: true,
5+
},
6+
extends: ['airbnb-typescript', 'prettier', 'prettier/react', 'prettier/@typescript-eslint'],
7+
parser: "@typescript-eslint/parser",
8+
plugins: ['@typescript-eslint', 'prettier'],
9+
rules: {
10+
"import/prefer-default-export": "off",
11+
"import/no-unresolved": "off",
12+
"prettier/prettier": "error",
13+
"react/prop-types": "off",
14+
"no-plusplus": "off"
15+
}
16+
};

0 commit comments

Comments
 (0)