Skip to content

Commit

Permalink
⬆️ update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Dec 15, 2018
1 parent 184e21c commit e86dc25
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 44 deletions.
1 change: 1 addition & 0 deletions lib/configs/+eslint-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
{ pattern: rulesDocumentUrl },
],
"@mysticatea/eslint-plugin/require-meta-fixable": "error",
"@mysticatea/eslint-plugin/require-meta-type": "error",
"@mysticatea/eslint-plugin/test-case-property-ordering":
"error",
"@mysticatea/eslint-plugin/test-case-shorthand-strings":
Expand Down
2 changes: 2 additions & 0 deletions lib/configs/+node.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ module.exports = {
"@mysticatea/node/prefer-global/buffer": "error",
"@mysticatea/node/prefer-global/console": "error",
"@mysticatea/node/prefer-global/process": "error",
"@mysticatea/node/prefer-global/text-decoder": "off",
"@mysticatea/node/prefer-global/text-encoder": "off",
"@mysticatea/node/prefer-global/url-search-params": "off",
"@mysticatea/node/prefer-global/url": "off",
"@mysticatea/node/process-exit-as-throw": "error",
Expand Down
2 changes: 1 addition & 1 deletion lib/configs/_ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ module.exports = {
"no-unused-vars": "off",
"no-use-before-define": "off",
"one-var": "off",
"valid-jsdoc": "off",
"@mysticatea/ts/explicit-function-return-type": "off", // I want but this is not so...
"@mysticatea/ts/generic-type-naming": "off",
"@mysticatea/ts/interface-name-prefix": "off",
"@mysticatea/ts/member-delimiter-style": "off", // favor of Prettier.
"@mysticatea/ts/member-ordering": "off",
Expand Down
3 changes: 2 additions & 1 deletion lib/configs/_vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ module.exports = {
"@mysticatea/vue/no-use-v-if-with-v-for": "error",
"@mysticatea/vue/no-v-html": "error",
"@mysticatea/vue/require-prop-type-constructor": "error",
"@mysticatea/vue/use-v-on-exact": "off",

// Disabled rules
// Disabled rules (prefer prettier)
"@mysticatea/vue/script-indent": "off",
},
settings: {
Expand Down
26 changes: 0 additions & 26 deletions lib/configs/es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,17 +180,6 @@ module.exports = merge(
radix: "error",
"require-atomic-updates": "error",
"require-await": "error",
"require-jsdoc": [
"error",
{
require: {
ArrowFunctionExpression: true,
ClassDeclaration: true,
FunctionDeclaration: true,
MethodDefinition: true,
},
},
],
"spaced-comment": [
"error",
"always",
Expand Down Expand Up @@ -221,21 +210,6 @@ module.exports = merge(
],
strict: ["error", "global"],
"use-isnan": "error",
"valid-jsdoc": [
"error",
{
prefer: { return: "returns" },
preferType: {
Boolean: "boolean",
Function: "function",
Number: "number",
Object: "object",
String: "string",
Symbol: "symbol",
},
requireReturn: true,
},
],
"valid-typeof": ["error", { requireStringLiterals: true }],
yoda: ["error", "never", { exceptRange: true }],

Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
},
"dependencies": {
"eslint-plugin-eslint-comments": "~3.0.1",
"eslint-plugin-eslint-plugin": "~1.4.0",
"eslint-plugin-node": "~7.0.1",
"eslint-plugin-eslint-plugin": "^2.0.0",
"eslint-plugin-node": "~8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-typescript": "~0.12.0",
"eslint-plugin-vue": "~5.0.0-beta.3",
"prettier": "~1.14.2",
"typescript-eslint-parser": "^20.0.0",
"vue-eslint-parser": "^3.2.2"
"eslint-plugin-typescript": "~0.14.0",
"eslint-plugin-vue": "^5.0.0",
"prettier": "~1.14.3",
"typescript-eslint-parser": "^21.0.2",
"vue-eslint-parser": "^4.0.3"
},
"devDependencies": {
"@mysticatea/eslint-plugin": "^5.1.0",
"chokidar-cli": "^1.2.0",
"codecov": "^3.0.1",
"eslint": "~5.6.1",
"fs-extra": "^7.0.0",
"globals": "^11.7.0",
"@mysticatea/eslint-plugin": "^7.0.0",
"chokidar-cli": "^1.2.1",
"codecov": "^3.1.0",
"eslint": "~5.10.0",
"fs-extra": "^7.0.1",
"globals": "^11.9.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"opener": "^1.5.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"opener": "^1.5.1",
"rimraf": "^2.6.2"
},
"scripts": {
Expand Down

0 comments on commit e86dc25

Please sign in to comment.