1 Star 1 Fork 0

边仁杰 / netdata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.remarkrc.js 3.08 KB
一键复制 编辑 原始数据 按行查看 历史
// Source: https://github.com/codacy/codacy-remark-lint/raw/master/.remarkrc.js
const fs = require("fs");
const path = require("path");
exports.settings = {
gfm: true,
commonmark: true,
looseTable: false,
spacedTable: false,
paddedTable: false,
fences: true,
rule: '-',
ruleRepetition: 3,
emphasis: "*",
strong: "*",
bullet: "-",
listItemIndent: 'tab',
incrementListMarker: true
};
const personalDictionaryPath = path.join(__dirname, ".dictionary");
const personalDictionary = fs.existsSync(personalDictionaryPath)
? {
personal: fs.readFileSync(personalDictionaryPath, "utf8")
}
: {};
const remarkPresetLintMarkdownStyleGuide = {
plugins: require("remark-preset-lint-markdown-style-guide").plugins.filter(
function(elem) {
return elem != require("remark-lint-no-duplicate-headings");
}
)
};
exports.plugins = [
require("remark-preset-lint-consistent"),
require("remark-preset-lint-recommended"),
remarkPresetLintMarkdownStyleGuide,
[require("remark-lint-no-dead-urls"), { skipOffline: true }],
require("remark-lint-heading-whitespace"),
[require("remark-lint-maximum-line-length"), 120],
[require("remark-lint-maximum-heading-length"), 120],
[require("remark-lint-list-item-indent"), "tab-size"],
[require("remark-lint-list-item-spacing"), false],
[require("remark-lint-strong-marker"), "*"],
[require("remark-lint-emphasis-marker"), "_"],
[require("remark-lint-unordered-list-marker-style"), "-"],
[require("remark-lint-ordered-list-marker-style"), "."],
[require("remark-lint-ordered-list-marker-value"), "ordered"],
/*[
require("remark-lint-write-good"),
[
"warn",
{
passive: false,
illusion: true,
so: true,
thereIs: true,
weasel: true,
adverb: true,
tooWordy: true,
cliches: true,
eprime: false
}
]
],*/
require("remark-validate-links"),
require("remark-frontmatter"),
/*[
require("remark-retext"),
require("unified")().use({
plugins: [
require("retext-english"),
require("retext-syntax-urls"),
[
require("retext-spell"),
{
ignoreLiteral: true,
dictionary: require("dictionary-en-us"),
...personalDictionary
}
],
[
require("retext-sentence-spacing"),
{
preferred: 1
}
],
require("retext-repeated-words"),
require("retext-usage"),
require("retext-indefinite-article"),
require("retext-redundant-acronyms"),
[
require("retext-contractions"),
{
straight: true,
allowLiteral: true
}
],
require("retext-diacritics"),
[
require("retext-quotes"),
{
preferred: "straight"
}
],
require("retext-equality"),
require("retext-passive"),
require("retext-profanities"),
[
require("retext-readability"),
{
age: 20
}
]
]
})
]*/
];
C
1
https://gitee.com/rjbian/netdata.git
git@gitee.com:rjbian/netdata.git
rjbian
netdata
netdata
master

搜索帮助