Skip to content

Commit

Permalink
Merge pull request #2 from taburetkin/v2-alpha
Browse files Browse the repository at this point in the history
initial
  • Loading branch information
taburetkin committed May 15, 2019
2 parents 690d008 + 214eb41 commit 846e628
Show file tree
Hide file tree
Showing 199 changed files with 2,178 additions and 22,982 deletions.
12 changes: 8 additions & 4 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"presets": ["es2015"],
"plugins":[
["babel-plugin-root-import"]
]
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-transform-runtime"
],
"sourceMaps": "inline",
"retainLines": true
}
16 changes: 0 additions & 16 deletions .editorconfig

This file was deleted.

86 changes: 69 additions & 17 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,70 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"camelcase": [ 2, { "properties": "always" } ]
},
"env": {
"browser": true,
"node": true
},
"globals": {
"define":true,
"document": true,
"window": true
}
}
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"globals": {
"Promise": true
},
"rules": {
"array-bracket-spacing": [ 2, "never" ],
"block-scoped-var": 2,
"brace-style": [ 2, "1tbs", { "allowSingleLine": true } ],
"camelcase": [ 2, { "properties": "always" } ],
"curly": [ 2, "multi-line" ],
"dot-notation": [ 2, { "allowKeywords": true } ],
"eol-last": 2,
"eqeqeq": 0,
"guard-for-in": 2,
"indent": [ 2, "tab", { "SwitchCase": 1 } ],
"key-spacing": [ 2,
{
"beforeColon": false,
"afterColon": true
}
],
"keyword-spacing": [ 2 ],
"new-cap": 2,
"no-bitwise": 2,
"no-caller": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-iterator": 2,
"no-loop-func": 2,
"no-multi-spaces": "error",
"no-multi-str": 2,
"no-multiple-empty-lines": 2,
"no-new": 2,
"no-proto": 2,
"no-script-url": 2,
"no-sequences": 2,
"no-shadow": 2,
"no-spaced-func": 2,
"no-trailing-spaces": 2,
"no-unused-vars": [ 1, { "args": "none" } ],
"no-var": 2,
"no-with": 2,
"object-shorthand": [ 2, "methods" ],
"operator-linebreak": [ 0, "after" ],
"quotes": [ 2, "single" ],
"semi": [ 0, "never" ],
"space-before-blocks": [ 2, "always" ],
"space-before-function-paren": [ 2, "never" ],
"space-in-parens": [ 2, "never" ],
"space-infix-ops": 2,
"space-unary-ops": [ 2,
{
"nonwords": false,
"overrides": {}
}
],
"strict": 0,
"valid-jsdoc": 2,
"wrap-iife": [ 2, "inside" ]
}
}
21 changes: 4 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,6 @@
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
Expand All @@ -30,3 +13,7 @@ demo

# Users Environment Variables
.lock-wscript
yarn.lock
.vscode


10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGELOG.md

This file was deleted.

80 changes: 0 additions & 80 deletions README.md

This file was deleted.

Loading

0 comments on commit 846e628

Please sign in to comment.