mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-23 15:36:10 +01:00
140 lines
3.4 KiB
JSON
140 lines
3.4 KiB
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:all",
|
|
"plugin:jsdoc/recommended",
|
|
"plugin:n/recommended",
|
|
"plugin:regexp/recommended",
|
|
"plugin:unicorn/all"
|
|
],
|
|
"ignorePatterns": [
|
|
"demo/markdown-it.min.js",
|
|
"demo/markdownlint-browser.js",
|
|
"demo/markdownlint-browser.min.js",
|
|
"demo/micromark-browser.js",
|
|
"demo/micromark-html-browser.js",
|
|
"example/typescript/type-check.js",
|
|
"micromark/micromark.cjs",
|
|
"micromark/micromark.dev.cjs",
|
|
"micromark/micromark-browser.js",
|
|
"micromark/micromark-browser.dev.js",
|
|
"test-repos/"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"demo/*.js"
|
|
],
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"jsdoc/require-jsdoc": "off",
|
|
"unicorn/prefer-query-selector": "off",
|
|
"unicorn/prefer-add-event-listener": "off",
|
|
"no-console": "off",
|
|
"no-invalid-this": "off",
|
|
"no-shadow": "off",
|
|
"no-var": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"example/*.js"
|
|
],
|
|
"rules": {
|
|
"n/no-extraneous-require": "off",
|
|
"n/no-missing-require": "off",
|
|
"no-console": "off",
|
|
"no-invalid-this": "off",
|
|
"no-shadow": "off",
|
|
"object-property-newline": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"test/rules/**/*.js"
|
|
],
|
|
"rules": {
|
|
"jsdoc/valid-types": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"**/*.mjs"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module"
|
|
}
|
|
}
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021,
|
|
"sourceType": "script"
|
|
},
|
|
"plugins": [
|
|
"jsdoc",
|
|
"n",
|
|
"regexp",
|
|
"unicorn"
|
|
],
|
|
"reportUnusedDisableDirectives": true,
|
|
"rules": {
|
|
"capitalized-comments": "off",
|
|
"complexity": "off",
|
|
"func-style": "off",
|
|
"id-length": "off",
|
|
"jsdoc/tag-lines": ["error", "never", {"startLines":1}],
|
|
"logical-assignment-operators": "off",
|
|
"max-depth": "off",
|
|
"max-lines-per-function": "off",
|
|
"max-lines": "off",
|
|
"max-params": "off",
|
|
"max-statements": "off",
|
|
"multiline-comment-style": ["error", "separate-lines"],
|
|
"no-empty-function": "off",
|
|
"no-implicit-coercion": "off",
|
|
"no-magic-numbers": "off",
|
|
"no-param-reassign": "off",
|
|
"no-plusplus": "off",
|
|
"no-ternary": "off",
|
|
"no-undefined": "off",
|
|
"object-shorthand": "off",
|
|
"one-var": "off",
|
|
"prefer-arrow-callback": "off",
|
|
"prefer-destructuring": "off",
|
|
"prefer-named-capture-group": "off",
|
|
"prefer-template": "off",
|
|
"regexp/no-super-linear-backtracking": "off",
|
|
"require-unicode-regexp": "off",
|
|
"sort-imports": "off",
|
|
"sort-keys": "off",
|
|
"unicorn/better-regex": "off",
|
|
"unicorn/consistent-function-scoping": "off",
|
|
"unicorn/filename-case": "off",
|
|
"unicorn/no-array-callback-reference": "off",
|
|
"unicorn/no-keyword-prefix": "off",
|
|
"unicorn/no-new-array": "off",
|
|
"unicorn/no-null": "off",
|
|
"unicorn/no-useless-undefined": "off",
|
|
"unicorn/prefer-at": "off",
|
|
"unicorn/prefer-module": "off",
|
|
"unicorn/prefer-string-replace-all": "off",
|
|
"unicorn/prefer-string-slice": "off",
|
|
"unicorn/prefer-switch": "off",
|
|
"unicorn/prevent-abbreviations": "off",
|
|
"unicorn/switch-case-braces": ["error", "avoid"],
|
|
"vars-on-top": "off"
|
|
},
|
|
"settings": {
|
|
"jsdoc": {
|
|
"preferredTypes": {
|
|
"object": "Object"
|
|
}
|
|
}
|
|
}
|
|
}
|