summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.remarkrc.js10
-rw-r--r--web/gui/dash-example.html2
-rw-r--r--web/gui/main.js7
3 files changed, 5 insertions, 14 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) {
diff --git a/web/gui/dash-example.html b/web/gui/dash-example.html
index 231fec8cec..9de2316280 100644
--- a/web/gui/dash-example.html
+++ b/web/gui/dash-example.html
@@ -692,7 +692,7 @@ class PickNSort {
for (var i = 0; i < aProps.length; i++) {
var propName = aProps[i];
- var aa = a[propName]
+ var aa = a[propName];
var aaProps = Object.keys(aa);
var bb = b[propName];
var bbProps = Object.keys(bb);
diff --git a/web/gui/main.js b/web/gui/main.js
index 0635b07a7e..371ddca005 100644
--- a/web/gui/main.js
+++ b/web/gui/main.js
@@ -1818,7 +1818,7 @@ function renderPage(menus, data) {
if (!isMemoryModeDbEngine) {
sidebar += '<br />&nbsp;<br />Get more history by ' +
- '<a href="https://docs.netdata.cloud/docs/configuration-guide/#increase-the-metrics-retention-period" target=_blank>configuring Netdata\'s <strong>history</strong></a> or using the <a href="https://docs.netdata.cloud/database/engine/" target=_blank>DB engine.</a>'
+ '<a href="https://docs.netdata.cloud/docs/configuration-guide/#increase-the-metrics-retention-period" target=_blank>configuring Netdata\'s <strong>history</strong></a> or using the <a href="https://docs.netdata.cloud/database/engine/" target=_blank>DB engine.</a>';
}
sidebar += '<br/>&nbsp;<br/><strong>netdata</strong><br/>' + data.version.toString() + '</small></li>';
@@ -4956,7 +4956,8 @@ function handleSignInMessage(e) {
netdataRegistryCallback(registryAgents);
if (e.data.redirectURI && !window.location.href.includes(e.data.redirectURI)) {
- window.location.replace(e.data.redirectURI);
+ // lgtm false-positive - redirectURI does not come from user input, but from iframe callback
+ window.location.replace(e.data.redirectURI); // lgtm[js/client-side-unvalidated-url-redirection]
}
}
@@ -5183,5 +5184,5 @@ if (document.readyState === "complete") {
if (document.readyState === "complete") {
initializeApp();
}
- })
+ });
}