Skip to content

Commit e86dc25

Browse files
committed
⬆️ update dependencies
1 parent 184e21c commit e86dc25

File tree

6 files changed

+22
-44
lines changed

6 files changed

+22
-44
lines changed

lib/configs/+eslint-plugin.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = {
3434
{ pattern: rulesDocumentUrl },
3535
],
3636
"@mysticatea/eslint-plugin/require-meta-fixable": "error",
37+
"@mysticatea/eslint-plugin/require-meta-type": "error",
3738
"@mysticatea/eslint-plugin/test-case-property-ordering":
3839
"error",
3940
"@mysticatea/eslint-plugin/test-case-shorthand-strings":

lib/configs/+node.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ module.exports = {
2929
"@mysticatea/node/prefer-global/buffer": "error",
3030
"@mysticatea/node/prefer-global/console": "error",
3131
"@mysticatea/node/prefer-global/process": "error",
32+
"@mysticatea/node/prefer-global/text-decoder": "off",
33+
"@mysticatea/node/prefer-global/text-encoder": "off",
3234
"@mysticatea/node/prefer-global/url-search-params": "off",
3335
"@mysticatea/node/prefer-global/url": "off",
3436
"@mysticatea/node/process-exit-as-throw": "error",

lib/configs/_ts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ module.exports = {
5050
"no-unused-vars": "off",
5151
"no-use-before-define": "off",
5252
"one-var": "off",
53-
"valid-jsdoc": "off",
5453
"@mysticatea/ts/explicit-function-return-type": "off", // I want but this is not so...
54+
"@mysticatea/ts/generic-type-naming": "off",
5555
"@mysticatea/ts/interface-name-prefix": "off",
5656
"@mysticatea/ts/member-delimiter-style": "off", // favor of Prettier.
5757
"@mysticatea/ts/member-ordering": "off",

lib/configs/_vue.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ module.exports = {
9595
"@mysticatea/vue/no-use-v-if-with-v-for": "error",
9696
"@mysticatea/vue/no-v-html": "error",
9797
"@mysticatea/vue/require-prop-type-constructor": "error",
98+
"@mysticatea/vue/use-v-on-exact": "off",
9899

99-
// Disabled rules
100+
// Disabled rules (prefer prettier)
100101
"@mysticatea/vue/script-indent": "off",
101102
},
102103
settings: {

lib/configs/es5.js

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -180,17 +180,6 @@ module.exports = merge(
180180
radix: "error",
181181
"require-atomic-updates": "error",
182182
"require-await": "error",
183-
"require-jsdoc": [
184-
"error",
185-
{
186-
require: {
187-
ArrowFunctionExpression: true,
188-
ClassDeclaration: true,
189-
FunctionDeclaration: true,
190-
MethodDefinition: true,
191-
},
192-
},
193-
],
194183
"spaced-comment": [
195184
"error",
196185
"always",
@@ -221,21 +210,6 @@ module.exports = merge(
221210
],
222211
strict: ["error", "global"],
223212
"use-isnan": "error",
224-
"valid-jsdoc": [
225-
"error",
226-
{
227-
prefer: { return: "returns" },
228-
preferType: {
229-
Boolean: "boolean",
230-
Function: "function",
231-
Number: "number",
232-
Object: "object",
233-
String: "string",
234-
Symbol: "symbol",
235-
},
236-
requireReturn: true,
237-
},
238-
],
239213
"valid-typeof": ["error", { requireStringLiterals: true }],
240214
yoda: ["error", "never", { exceptRange: true }],
241215

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@
1414
},
1515
"dependencies": {
1616
"eslint-plugin-eslint-comments": "~3.0.1",
17-
"eslint-plugin-eslint-plugin": "~1.4.0",
18-
"eslint-plugin-node": "~7.0.1",
17+
"eslint-plugin-eslint-plugin": "^2.0.0",
18+
"eslint-plugin-node": "~8.0.0",
1919
"eslint-plugin-prettier": "^3.0.0",
20-
"eslint-plugin-typescript": "~0.12.0",
21-
"eslint-plugin-vue": "~5.0.0-beta.3",
22-
"prettier": "~1.14.2",
23-
"typescript-eslint-parser": "^20.0.0",
24-
"vue-eslint-parser": "^3.2.2"
20+
"eslint-plugin-typescript": "~0.14.0",
21+
"eslint-plugin-vue": "^5.0.0",
22+
"prettier": "~1.14.3",
23+
"typescript-eslint-parser": "^21.0.2",
24+
"vue-eslint-parser": "^4.0.3"
2525
},
2626
"devDependencies": {
27-
"@mysticatea/eslint-plugin": "^5.1.0",
28-
"chokidar-cli": "^1.2.0",
29-
"codecov": "^3.0.1",
30-
"eslint": "~5.6.1",
31-
"fs-extra": "^7.0.0",
32-
"globals": "^11.7.0",
27+
"@mysticatea/eslint-plugin": "^7.0.0",
28+
"chokidar-cli": "^1.2.1",
29+
"codecov": "^3.1.0",
30+
"eslint": "~5.10.0",
31+
"fs-extra": "^7.0.1",
32+
"globals": "^11.9.0",
3333
"mocha": "^5.2.0",
34-
"npm-run-all": "^4.1.3",
35-
"nyc": "^13.0.1",
36-
"opener": "^1.5.0",
34+
"npm-run-all": "^4.1.5",
35+
"nyc": "^13.1.0",
36+
"opener": "^1.5.1",
3737
"rimraf": "^2.6.2"
3838
},
3939
"scripts": {

0 commit comments

Comments
 (0)