version 1.0

This commit is contained in:
2021-07-07 11:03:35 +02:00
commit 404732ef9d
29 changed files with 26242 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
}
}