UNPKG

@github/markdownlint-github

Version:

An opinionated collection of markdownlint rules used by GitHub.

25 lines (24 loc) 459 B
{ "root": true, "parserOptions": { "ecmaVersion": 2020 }, "env": { "es6": true, "node": true, "jest": true }, "plugins": ["github"], "extends": ["plugin:github/recommended"], "rules": { "filenames/match-regex": "off", "i18n-text/no-en": "off", "import/extensions": ["error", { "js": "ignorePackages"}], "import/no-unresolved": [ "error", { "ignore": ["^markdownlint/.+"] } ] } }