Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
7.0.0-beta.0
  • Loading branch information
mysticatea committed Jul 16, 2018
1 parent a42d38e commit 7137055
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion lib/rules/exports-style.js
Expand Up @@ -146,7 +146,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/exports-style.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/exports-style.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-deprecated-api.js
Expand Up @@ -100,7 +100,7 @@ module.exports = {
category: "Best Practices",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-deprecated-api.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-deprecated-api.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-extraneous-import.js
Expand Up @@ -18,7 +18,7 @@ module.exports = {
category: "Possible Errors",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-extraneous-import.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-extraneous-import.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-extraneous-require.js
Expand Up @@ -18,7 +18,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-extraneous-require.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-extraneous-require.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-hide-core-modules.js
Expand Up @@ -55,7 +55,7 @@ module.exports = {
category: "Possible Errors",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-hide-core-modules.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-hide-core-modules.md",
},
deprecated: true,
fixable: null,
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-missing-import.js
Expand Up @@ -17,7 +17,7 @@ module.exports = {
category: "Possible Errors",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-missing-import.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-missing-import.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-missing-require.js
Expand Up @@ -17,7 +17,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-missing-require.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-missing-require.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unpublished-bin.js
Expand Up @@ -36,7 +36,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unpublished-bin.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unpublished-bin.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unpublished-import.js
Expand Up @@ -18,7 +18,7 @@ module.exports = {
category: "Possible Errors",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unpublished-import.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unpublished-import.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unpublished-require.js
Expand Up @@ -18,7 +18,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unpublished-require.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unpublished-require.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unsupported-features.js
Expand Up @@ -332,7 +332,7 @@ module.exports = {
recommended: false,
replacedBy: ["no-unsupported-ecma-features"],
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unsupported-features.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unsupported-features.md",
},
deprecated: true,
fixable: null,
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unsupported-features/es-builtins.js
Expand Up @@ -128,7 +128,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unsupported-features/es-builtins.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unsupported-features/es-builtins.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unsupported-features/es-syntax.js
Expand Up @@ -510,7 +510,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unsupported-features/es-syntax.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unsupported-features/es-syntax.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unsupported-features/node-builtins.js
Expand Up @@ -212,7 +212,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/no-unsupported-features/node-builtins.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/no-unsupported-features/node-builtins.md",
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/prefer-global/buffer.js
Expand Up @@ -15,7 +15,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/prefer-global/buffer.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/prefer-global/buffer.md",
},
fixable: null,
schema: [{ enum: ["always", "never"] }],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/prefer-global/console.js
Expand Up @@ -14,7 +14,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/prefer-global/console.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/prefer-global/console.md",
},
fixable: null,
schema: [{ enum: ["always", "never"] }],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/prefer-global/process.js
Expand Up @@ -14,7 +14,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/prefer-global/process.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/prefer-global/process.md",
},
fixable: null,
schema: [{ enum: ["always", "never"] }],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/prefer-global/url-search-params.js
Expand Up @@ -15,7 +15,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/prefer-global/url-search-params.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/prefer-global/url-search-params.md",
},
fixable: null,
schema: [{ enum: ["always", "never"] }],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/prefer-global/url.js
Expand Up @@ -14,7 +14,7 @@ module.exports = {
category: "Stylistic Issues",
recommended: false,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/prefer-global/url.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/prefer-global/url.md",
},
fixable: null,
schema: [{ enum: ["always", "never"] }],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/process-exit-as-throw.js
Expand Up @@ -144,7 +144,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/process-exit-as-throw.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/process-exit-as-throw.md",
},
fixable: null,
schema: [],
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/shebang.js
Expand Up @@ -58,7 +58,7 @@ module.exports = {
category: "Possible Errors",
recommended: true,
url:
"https://github.com/mysticatea/eslint-plugin-node/blob/v6.0.1/docs/rules/shebang.md",
"https://github.com/mysticatea/eslint-plugin-node/blob/v7.0.0-beta.0/docs/rules/shebang.md",
},
fixable: "code",
schema: [
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-node",
"version": "6.0.1",
"version": "7.0.0-beta.0",
"description": "Additional ESLint's rules for Node.js",
"engines": {
"node": ">=6"
Expand Down

0 comments on commit 7137055

Please sign in to comment.