TypeScript Analyzer (ESLint, Prettier)

A linter and formatter for JavaScript and TypeScript in Visual Studio

Set Up for Markdown Plugin

Overview

ESLint has a plugin to lint and fix Markdown files. It lints Markdown, not JavaScript or TypeScript inside the Markdown.

We can set up the TypeScript Analyzer to use this plugin on Markdown files in Visual Studio projects. This shows both how to use a plugin, and how to apply it to files that are not currently linted. Errors will be shown in the Visual Studio Error List and underlined in the code window.

Instructions on how to do this in a TypeScript Node.js Console Application are below. These instructions work in Visual Studio 2017, Visual Studio 2019 and Visual Studio 2022.

Instructions

  1. Create a new Blank Node.js Console Application (TypeScript).
  2. Doubleclick package.json in Solution Explorer to edit it. Replace the existing devDependencies section with the code below and save. These are the dependencies that the TypeScript Analyzer needs locally, plus the new plugin, eslint-plugin-md:
    "devDependencies": {
     "@types/node": "20.11.0",
     "@typescript-eslint/eslint-plugin": "6.21.0",
     "@typescript-eslint/parser": "6.21.0",
     "eslint": "8.56.0",
     "eslint-plugin-prettier": "5.1.3",
     "prettier": "3.2.5",
     "typescript": "5.3.3",
     "eslint-plugin-md": "1.0.19"
    }
    
  3. If the package.json contains an eslintConfig section you can optionally remove this entire section. If you create a local configuration file as described below it will override this in any case, but it can be distracting to have unused configuration in your project. You will only have a eslintConfig section if you are using Visual Studio 2022 v17.4 or later.
  4. Install the npm packages by rightclicking ‘npm’ in Solution Explorer and running ‘Install npm Packages’ in VS2019 or VS2022, or ‘Install Missing npm Packages’ in VS2017.
  5. Create a new local configuration file called .eslintrc.js in the project. To do this rightclick the project name in Solution Explorer, Add/New File…, enter .eslintrc.js, and click OK.
  6. Copy the file contents on this link into your new file and save. This is the usual default configuration file for the TypeScript Analyzer modified to enable the Markdown plugin. The actual changes made are detailed at the end of this article.
  7. Go to Tools/Options/TypeScript Analyzer/ESLint and under ‘File extensions to lint’ add ‘,md’ to the existing list. After the change the ‘File extensions to lint’ setting should look like ‘js,jsx,ts,tsx,mjs,cjs,md’. All other settings on this screen should be set to the defaults. In particular settings ‘Enable local config’ and ‘Enable local node_modules’ should be set to True.
  8. Open README.md, copy the header that’s in there and paste it on a new line, so it’s duplicated. The TypeScript Analyzer should generate md/remark warnings ‘Don’t use multiple top level headings’ and ‘Do not use headings with similar content’.

Changes Made to Default Configuration File

To create the configuration file for Markdown one change was made to the code in the default configuration file:

This was to add the section below as an element in the first overrides array, after the ‘TypeScript-only Rules’ entry. This is fundamentally the same entry as is specified in the documentation for the plugin, although we haven’t explicitly specified the parser. You can specify the parser as on the link if you want to, it will work the same. The completed file should look like the code on this link:

        {
            "files": ["*.md"],
            "extends": ["plugin:md/recommended"],
            "rules": {
                "md/remark": "warn",
            },
        },

Configuring Individual Rules

The md/remark rule enabled above wraps and enables a number of remark rules for Markdown. If you want to configure the individual Markdown rules then you need to use the syntax described in the plugin documentation. In particular you need to ensure you enable the plugin ‘preset-link-markdown-style-guide’. Otherwise the default recommended rules may get disabled.

For example, to disable the rule maximum-line-length and to configure the rule ordered-list-marker-value to accept ordered numbers in a list rather than repeated ones, you would replace the code above in the section Changes Made to Default Configuration File with the code below:

        {
            "files": ["*.md"],
            "extends": ["plugin:md/recommended"],
            "rules": {
                "md/remark": [
                    "warn",
                    {
                        "plugins": [
                            "preset-lint-markdown-style-guide",
                            "frontmatter",
                            ["lint-maximum-line-length", false],
                            ["lint-ordered-list-marker-value", [1, "ordered"]]
                        ],
                    },
                ],
            },
        },