summaryrefslogtreecommitdiffstats
path: root/.remarkrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.remarkrc.js')
-rw-r--r--.remarkrc.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/.remarkrc.js b/.remarkrc.js
index a5d9d1280b..2465330fc3 100644
--- a/.remarkrc.js
+++ b/.remarkrc.js
@@ -1,8 +1,5 @@
// 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,
@@ -19,13 +16,6 @@ exports.settings = {
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) {