Skip to content

Commit 38be93e

Browse files
committed
start implementing tests for components
1 parent be552e6 commit 38be93e

21 files changed

+638
-45
lines changed

Diff for: .eslintrc.js

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
module.exports = {
2-
"extends": "airbnb",
3-
"parser": "babel-eslint",
4-
"env": {
5-
"browser": true,
2+
extends: 'airbnb',
3+
parser: 'babel-eslint',
4+
env: {
5+
browser: true,
6+
jest: true,
7+
},
8+
rules: {
9+
'react/jsx-filename-extension': 'off',
10+
'no-underscore-dangle': 'off',
11+
'import/no-named-as-default': 'off',
12+
'consistent-return': 'off',
13+
'react/forbid-prop-types': [0, { forbid: ['object'] }],
614
},
7-
"rules": {
8-
"react/jsx-filename-extension": "off",
9-
"no-underscore-dangle": "off",
10-
"consistent-return": "off",
11-
"react/forbid-prop-types": [0, { "forbid": ["object"] }]
12-
}
1315
};

0 commit comments

Comments
 (0)