Skip to content

Commit

Permalink
build(npm): ⬆️ eslint-config-moving-meadow, eslint-plugin-budapestian…
Browse files Browse the repository at this point in the history
…, lint-staged, symlink-dir, tslint, upem
  • Loading branch information
sverweij committed May 4, 2020
1 parent 0c94b33 commit a7baae0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"root": true,
"extends": ["moving-meadow"],
"rules": {
"security/detect-non-literal-fs-filename": "off"
"security/detect-non-literal-fs-filename": "off",
"unicorn/no-null": "off"
},
"overrides": [
{
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,28 +148,28 @@
"chai-json-schema": "1.5.1",
"coffeescript": "2.5.1",
"eslint": "6.8.0",
"eslint-config-moving-meadow": "1.3.0",
"eslint-config-moving-meadow": "2.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-budapestian": "1.2.0",
"eslint-plugin-budapestian": "2.0.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-unicorn": "19.0.1",
"husky": "4.2.5",
"intercept-stdout": "0.1.2",
"lint-staged": "10.1.7",
"lint-staged": "10.2.2",
"mocha": "7.1.2",
"normalize-newline": "3.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"prettier": "2.0.5",
"shx": "0.3.2",
"symlink-dir": "4.0.1",
"tslint": "6.1.1",
"symlink-dir": "4.0.3",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "3.8.3",
"upem": "3.1.2",
"upem": "4.0.0",
"vue-template-compiler": "2.6.11",
"yarn": "1.22.4"
},
Expand Down
2 changes: 1 addition & 1 deletion src/main/options/normalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = (pOptions) => {
...pOptions,
};

lReturnValue.maxDepth = parseInt(lReturnValue.maxDepth, 10);
lReturnValue.maxDepth = Number.parseInt(lReturnValue.maxDepth, 10);
lReturnValue.moduleSystems = uniq(lReturnValue.moduleSystems.sort());
lReturnValue.doNotFollow = normalizeFilterOption(lReturnValue.doNotFollow);
lReturnValue.exclude = normalizeFilterOption(lReturnValue.exclude);
Expand Down

0 comments on commit a7baae0

Please sign in to comment.