Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency eslint-plugin-markdown to ^2.2.1 #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 17, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-markdown ^2.0.0-rc.0 -> ^2.2.1 age adoption passing confidence

Release Notes

eslint/eslint-plugin-markdown

v2.2.1

Compare Source

v2.2.0

Compare Source

v2.1.0

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

  • 53dc0e5 Docs: Remove prerelease README notes (#​173) (Brandon Mills)
  • 140adf4 2.0.0-rc.2 (ESLint Jenkins)
  • 15d7aa6 Build: changelog update for 2.0.0-rc.2 (ESLint Jenkins)
  • f6a3fad Fix: overrides pattern for virtual filenames in recommended config (#​169) (Milos Djermanovic)
  • 390d508 2.0.0-rc.1 (ESLint Jenkins)
  • e05d6eb Build: changelog update for 2.0.0-rc.1 (ESLint Jenkins)
  • 1dd7089 Fix: npm prepare script on Windows (refs #​166) (#​168) (Brandon Mills)
  • 23ac2b9 Fix: Ignore words in info string after syntax (fixes #​166) (#​167) (Brandon Mills)
  • 8f729d3 Chore: Switch to main for primary branch (fixes #​161) (#​165) (Brandon Mills)
  • d30c50f Chore: Automatically install example dependencies (#​164) (Brandon Mills)
  • 2749b4d 2.0.0-rc.0 (ESLint Jenkins)
  • 922a00e Build: changelog update for 2.0.0-rc.0 (ESLint Jenkins)
  • d94c22f Build: Install example test dependencies in Jenkins (#​160) (Brandon Mills)
  • 7f26cb9 Docs: Reference recommended config disabled rules (#​159) (Brandon Mills)
  • bf7648f Docs: Add TypeScript example (#​155) (Brandon Mills)
  • d80be9e New: Add rules to recommended config (#​157) (Nikolay Stoynov)
  • fc4d7aa Chore: run CI in Node 14.x (#​158) (Kai Cataldo)
  • f2d4923 Docs: Add React example (#​152) (Brandon Mills)
  • eb66833 New: Add recommended config (fixes #​151) (#​153) (Brandon Mills)
  • 0311640 Fix: Don't require message end locations (fixes #​112) (#​154) (Brandon Mills)
  • 2bc9352 2.0.0-alpha.0 (ESLint Jenkins)
  • c0ba401 Build: changelog update for 2.0.0-alpha.0 (ESLint Jenkins)
  • 51e48c6 Docs: Revamp documentation for v2 (#​149) (Brandon Mills)
  • b221391 Docs: Dogfood plugin by linting readme (#​145) (Brandon Mills)
  • 7423610 Docs: Explain use of --ext option in ESLint v7 (#​146) (Brandon Mills)
  • 0d4dbe8 Breaking: Implement new processor API (fixes #​138) (#​144) (Brandon Mills)
  • 7eeafb8 Chore: Update ESLint config and plugins (#​143) (Brandon Mills)
  • f483343 Breaking: Require ESLint v6 (#​142) (Brandon Mills)
  • 9aa1fdc Chore: Use ES2018 object spread syntax (#​141) (Brandon Mills)
  • f584cc6 Build: Remove Travis (#​140) (Brandon Mills)
  • 35f9a11 Breaking: Drop support for Node.js v6 (refs #​138) (#​137) (Brandon Mills)
  • 6f02ef5 Chore: Add npm version and build status badges (#​139) (Brandon Mills)
Migrating from eslint-plugin-markdown v1
  1. Install this release:

    $ npm install --save-dev eslint@latest eslint-plugin-markdown@latest
  2. In your .eslintrc.js file, extend the recommended config:

     // .eslintrc.js
     module.exports = {
    -    plugins: ["markdown"],
    -    overrides: [
    -        {
    -            files: ["**/*.md"],
    -            parserOptions: {
    -                ecmaFeatures: {
    -                    impliedStrict: true
    -                }
    -            },
    -        }
    -    ]
    +    extends: "plugin:markdown/recommended"
     };

The readme's detailed migration instructions discuss all of the differences between v1 and v2.

v2.0.0-rc.2

Compare Source

  • f6a3fad Fix: overrides pattern for virtual filenames in recommended config (#​169) (Milos Djermanovic)
Migrating from eslint-plugin-markdown v1
  1. Install this release candidate:

    $ npm install --save-dev eslint@latest eslint-plugin-markdown@next
  2. In your .eslintrc.js file, extend the recommended config:

     // .eslintrc.js
     module.exports = {
    -    plugins: ["markdown"],
    -    overrides: [
    -        {
    -            files: ["**/*.md"],
    -            parserOptions: {
    -                ecmaFeatures: {
    -                    impliedStrict: true
    -                }
    -            },
    -        }
    -    ]
    +    extends: "plugin:markdown/recommended"
     };

The readme's detailed migration instructions discuss all of the differences between v1 and v2.

v2.0.0-rc.1

Compare Source

Migrating from eslint-plugin-markdown v1
  1. Install this release candidate:

    $ npm install --save-dev eslint@latest eslint-plugin-markdown@next
  2. In your .eslintrc.js file, extend the recommended config:

     // .eslintrc.js
     module.exports = {
    -    plugins: ["markdown"],
    -    overrides: [
    -        {
    -            files: ["**/*.md"],
    -            parserOptions: {
    -                ecmaFeatures: {
    -                    impliedStrict: true
    -                }
    -            },
    -        }
    -    ]
    +    extends: "plugin:markdown/recommended"
     };

The readme's detailed migration instructions discuss all of the differences between v1 and v2.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch 2 times, most recently from 22726d2 to f73b787 Compare January 19, 2021 11:03
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.0.0-rc.1 chore(deps): update dependency eslint-plugin-markdown to ^2.0.0-rc.2 Jan 31, 2021
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch 2 times, most recently from 707fe24 to d630d7f Compare February 2, 2021 06:44
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch 2 times, most recently from ea6e6d9 to 2299ba9 Compare February 14, 2021 23:38
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.0.0-rc.2 chore(deps): update dependency eslint-plugin-markdown to ^2.0.0 Feb 14, 2021
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch from 2299ba9 to f5d4b26 Compare April 5, 2021 05:14
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.0.0 chore(deps): update dependency eslint-plugin-markdown to ^2.0.1 Apr 5, 2021
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch from f5d4b26 to 12af749 Compare April 26, 2021 16:04
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.0.1 chore(deps): update dependency eslint-plugin-markdown to ^2.1.0 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch from 12af749 to ab44bde Compare June 6, 2021 22:05
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.1.0 chore(deps): update dependency eslint-plugin-markdown to ^2.2.0 Jun 6, 2021
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch 3 times, most recently from f095af8 to 25f8bd8 Compare June 15, 2021 07:52
@renovate renovate bot force-pushed the renovate/eslint-plugin-markdown-2.x branch from 25f8bd8 to 05180a0 Compare October 20, 2021 06:57
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-markdown to ^2.2.0 chore(deps): update dependency eslint-plugin-markdown to ^2.2.1 Oct 20, 2021
@renovate
Copy link
Author

renovate bot commented Mar 23, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant