Skip to content

Commit

Permalink
Rewrite the README
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaq committed Apr 24, 2019
1 parent c0e0a2b commit 05ca50b
Show file tree
Hide file tree
Showing 3 changed files with 468 additions and 843 deletions.
48 changes: 16 additions & 32 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"root": true,
"extends": ["warp"],
"plugins": ["markdown"],
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
Expand All @@ -15,48 +14,33 @@
"space-before-blocks": [2, "never"],
"consistent-this": [2, "_this"],
"semi": [2, "always", {"omitLastInOneLineBlock": true}],
"curly": 0,
"func-style": 0,
"prefer-template": 0,
"prefer-arrow-callback": 0,
"no-use-before-define": 0,
"max-statements-per-line": 0,
"prefer-rest-params": 0,
"class-methods-use-this": 0,
"camelcase": 0,
"indent": 0,
"func-name-matching": 0,
"curly": ["off"],
"func-style": ["off"],
"prefer-template": ["off"],
"prefer-arrow-callback": ["off"],
"no-use-before-define": ["off"],
"max-statements-per-line": ["off"],
"prefer-rest-params": ["off"],
"class-methods-use-this": ["off"],
"camelcase": ["off"],
"indent": ["off"],
"func-name-matching": ["off"],
"no-console": 2,
"eqeqeq": [2, "smart"],
"no-eq-null": 0,
"no-param-reassign": 0
"no-eq-null": ["off"],
"no-param-reassign": ["off"]
},
"overrides": [
{
"files": ["test/**"],
"env": {"node": true, "mocha": true},
"globals": {"Promise": false},
"rules": {
"arrow-body-style": 0,
"no-sequences": 0,
"max-len": 0,
"arrow-body-style": ["off"],
"no-sequences": ["off"],
"max-len": ["off"],
"space-before-function-paren": ["error", "always"]
}
},
{
"files": ["README.md"],
"env": {
"browser": true,
"node": true
},
"globals": {
"Future": false,
"S": false,
"Promise": false
},
"rules": {
"no-console": 0
}
}
]
}
Loading

0 comments on commit 05ca50b

Please sign in to comment.