Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-zone committed Dec 3, 2018
1 parent 0017bc9 commit 7cfee94
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
38 changes: 19 additions & 19 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,35 @@ module.exports = {
"es6": true
},
extends: [
"eslint:recommended",
"plugin:prettier/recommended"
"eslint:recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
},
"rules": {
"prettier/prettier": "error",
"no-extra-semi": "error",
"no-template-curly-in-string": "error",
"no-caller": "error",
"no-control-regex": "off",
"yoda": "error",
"eqeqeq": "error",
"global-require": "off",
"brace-style": "off",
"eol-last": "error",
"no-extra-bind": "warn",
"no-process-exit": "warn",
"no-use-before-define": "off",
"no-unused-vars": ["error", { args: "none" }],
"no-unsafe-negation": "error",
"no-loop-func": "warn",
"indent": "off",
"no-extra-semi": "error",
"no-template-curly-in-string": "error",
"no-caller": "error",
"no-control-regex": "off",
"yoda": "error",
"eqeqeq": "error",
"global-require": "off",
"brace-style": "off",
"eol-last": "error",
"no-extra-bind": "warn",
"no-process-exit": "warn",
"no-use-before-define": "off",
"no-unused-vars": ["error", { args: "none" }],
"no-unsafe-negation": "error",
"no-loop-func": "warn",
"indent": "off",
"no-console": "off",
"no-empty": "off",
"no-multi-spaces": "error",
"no-multiple-empty-lines": "error",
"no-multiple-empty-lines": "error",
"linebreak-style": [
"error",
"unix"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bundle-ensure-webpack-plugin",
"version": "1.1.0",
"version": "1.1.1",
"description": "ensure bundle installed and make retry-able before startup",
"main": "./lib/index.js",
"scripts": {
Expand Down

0 comments on commit 7cfee94

Please sign in to comment.