File tree Expand file tree Collapse file tree 3 files changed +583
-0
lines changed
Expand file tree Collapse file tree 3 files changed +583
-0
lines changed Original file line number Diff line number Diff line change 11import { configs as dependConfigs } from "eslint-plugin-depend" ;
22import eslintPluginJs from "@eslint/js" ;
33import eslintPluginJson from "@eslint/json" ;
4+ import eslintPluginMarkdown from "@eslint/markdown" ;
45import eslintPluginPackageJson from "eslint-plugin-package-json" ;
56import eslintPluginStylistic from "@stylistic/eslint-plugin" ;
67import globals from "globals" ;
@@ -11,6 +12,19 @@ const config = [
1112 eslintPluginJs . configs . all ,
1213 eslintPluginPackageJson . configs . recommended ,
1314 importConfigs . recommended ,
15+ ...eslintPluginMarkdown . configs . recommended ,
16+ {
17+ "files" : [ "**/*.md" ] ,
18+ "language" : "markdown/gfm" ,
19+ "plugins" : {
20+ eslintPluginMarkdown
21+ } ,
22+ "rules" : {
23+ "logical-assignment-operators" : "off" ,
24+ "max-lines-per-function" : "off" ,
25+ "no-irregular-whitespace" : "off"
26+ }
27+ } ,
1428 {
1529 "ignores" : [
1630 "modules/*" ,
You can’t perform that action at this time.
0 commit comments