Tests for Member.jsx

This commit is contained in:
Rodrigo Pedroso 2019-07-17 00:14:21 -04:00
commit f2303fb70c
15 changed files with 4428 additions and 10535 deletions

15
.eslintrc Normal file
View file

@ -0,0 +1,15 @@
{
"parser": "babel-eslint", // https://github.com/babel/babel-eslint
"env": { // http://eslint.org/docs/user-guide/configuring.html#specifying-environments
"node": true, // Node.js global variables and Node.js-specific rules
"es6": true
},
"parserOptions": {
"ecmaVersion": 6
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"no-unused-vars": 1
}
}