Library rewrite

This commit is contained in:
Niklas von Hertzen
2017-07-29 10:07:42 +08:00
committed by Niklas von Hertzen
parent 83e9b85e1e
commit 8a6fb5f733
70 changed files with 2521 additions and 3219 deletions

15
.eslintrc Normal file
View File

@ -0,0 +1,15 @@
{
"parser": "babel-eslint",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": ["error", {
"singleQuote": true,
"bracketSpacing": false,
"parser": "flow",
"tabWidth": 4,
"printWidth": 100
}]
}
}