@monstermakes/larry-cli
Advanced tools
Comparing version 0.3.1 to 0.3.2
module.exports = { | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
] | ||
} | ||
"plugins": [ | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single", | ||
{ "allowTemplateLiterals": true } | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
] | ||
} | ||
}; |
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.3.2](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.1...@monstermakes/larry-cli@0.3.2) (2021-04-29) | ||
### Bug Fixes | ||
* make eslint rules consistent ([790add5](https://github.com/MonsterMakes/larry-cli/commit/790add52dfa7e8e7f95a5a846fcbac6eb1867273)) | ||
## [0.3.1](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.0...@monstermakes/larry-cli@0.3.1) (2020-06-19) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@monstermakes/larry-cli", | ||
"description": "A common base for building command line applications.", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"bin": {}, | ||
@@ -13,4 +13,4 @@ "publishConfig": {}, | ||
"scripts": { | ||
"lint-fix": "echo '=> Fixing Linting errors...' && eslint {src,cypress,test}/**/*.js --fix", | ||
"lint": "echo '=> Linting' && eslint **/*.js", | ||
"lint-fix": "echo '=> Fixing Linting errors...' && eslint {src,test}/**/*.js --fix", | ||
"lint": "echo '=> Linting' && eslint {src,test}/**/*.js", | ||
"test": "echo '=> Running Tests' && mocha -u tdd --timeout 60000 --colors test/**/*.spec.js", | ||
@@ -31,7 +31,7 @@ "test-coverage": "echo '=> Running Tests w/ Coverage' && nyc mocha test/**/*.spec.js", | ||
"chai-files": "^1.4.0", | ||
"eslint": "^4.17.0", | ||
"eslint": "^7.25.0", | ||
"mocha": "^5.0.0", | ||
"nyc": "^11.4.1" | ||
}, | ||
"gitHead": "5671da32ed1e7204ffa0914cde95db45b1fe5d84" | ||
"gitHead": "593928ee0af64a69fa9cf7e87a617d77cd2d3f3d" | ||
} |
10339
248