summaryrefslogtreecommitdiffstats
path: root/.remarkrc.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-09-03 10:23:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-09-03 10:23:48 +0000
commitcd7ed12292aef11d9062b64f61215174e8cc1860 (patch)
tree9998ab03d153956743d9319cf3a0279b9593ce36 /.remarkrc.js
parentReleasing debian version 1.16.1-6. (diff)
downloadnetdata-cd7ed12292aef11d9062b64f61215174e8cc1860.tar.xz
netdata-cd7ed12292aef11d9062b64f61215174e8cc1860.zip
Merging upstream version 1.17.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.remarkrc.js')
-rw-r--r--.remarkrc.js121
1 files changed, 0 insertions, 121 deletions
diff --git a/.remarkrc.js b/.remarkrc.js
deleted file mode 100644
index a5d9d1280..000000000
--- a/.remarkrc.js
+++ /dev/null
@@ -1,121 +0,0 @@
-// 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
- }
- ]
- ]
- })
- ]*/
-];