This commit is contained in:
Maxime Renou
2019-03-01 12:22:51 +01:00
commit 17fd5a7303
26 changed files with 16340 additions and 0 deletions

23
.eslintrc Normal file
View File

@@ -0,0 +1,23 @@
{
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react"
],
"env": {
"es6": true
},
"plugins": [
"react"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
// don't force es6 functions to include space before paren
"space-before-function-paren": 0,
// allow specifying true explicitly for boolean props
"react/jsx-boolean-value": 0
}
}