Now based on mailtoui

This commit is contained in:
2020-08-29 13:55:43 +02:00
parent 4266ba931a
commit f35b067076
27 changed files with 10984 additions and 6396 deletions

23
.eslintrc Normal file
View File

@@ -0,0 +1,23 @@
{
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"plugins": ["prettier"],
"extends": ["plugin:prettier/recommended"],
"rules": {
"prettier/prettier": [
"error",
{
"semi": true,
"singleQuote": true,
"printWidth": 125,
"tabWidth": 4,
"useTabs": false,
"trailingComma": "none",
"bracketSpacing": true,
"parser": "flow"
}
]
}
}