Library rewrite

This commit is contained in:
MoyuScript
2017-07-29 10:07:42 +08:00
parent b92d8cba24
commit 441d349948
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
}]
}
}