ES Lint Compliant

Also changed line endings from 'LF' to 'CRLF'
This commit is contained in:
Matt Visnovsky 2024-05-01 10:29:13 -06:00
parent ba84f01444
commit 4699a1ccd8

View file

@ -903,7 +903,7 @@ const monitorDefaults = {
packetSize: 56,
expiryNotification: false,
maxredirects: 10,
accepted_statuscodes: ["200-299"],
accepted_statuscodes: [ "200-299" ],
dns_resolve_type: "A",
dns_resolve_server: "1.1.1.1",
docker_container: "",
@ -1030,15 +1030,15 @@ export default {
},
protoServicePlaceholder() {
return this.$t("Example:", ["Health"]);
return this.$t("Example:", [ "Health" ]);
},
protoMethodPlaceholder() {
return this.$t("Example:", ["check"]);
return this.$t("Example:", [ "check" ]);
},
protoBufDataPlaceholder() {
return this.$t("Example:", [`
return this.$t("Example:", [ `
syntax = "proto3";
package grpc.health.v1;
@ -1065,7 +1065,7 @@ message HealthCheckResponse {
},
bodyPlaceholder() {
if (this.monitor && this.monitor.httpBodyEncoding && this.monitor.httpBodyEncoding === "xml") {
return this.$t("Example:", [`
return this.$t("Example:", [ `
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
@ -1074,16 +1074,16 @@ message HealthCheckResponse {
</soap:Envelope>` ]);
}
if (this.monitor && this.monitor.httpBodyEncoding === "form") {
return this.$t("Example:", ["key1=value1&key2=value2"]);
return this.$t("Example:", [ "key1=value1&key2=value2" ]);
}
return this.$t("Example:", [`
return this.$t("Example:", [ `
{
"key": "value"
}` ]);
},
headersPlaceholder() {
return this.$t("Example:", [`
return this.$t("Example:", [ `
{
"HeaderName": "HeaderValue"
}` ]);
@ -1383,7 +1383,7 @@ message HealthCheckResponse {
this.monitor.pathName = undefined;
this.monitor.screenshot = undefined;
this.monitor.name = this.$t("cloneOf", [this.monitor.name]);
this.monitor.name = this.$t("cloneOf", [ this.monitor.name ]);
this.$refs.tagsManager.newTags = this.monitor.tags.map((monitorTag) => {
return {
id: monitorTag.tag_id,
@ -1470,7 +1470,7 @@ message HealthCheckResponse {
this.monitor.body = JSON.stringify(JSON.parse(this.monitor.body), null, 4);
}
const monitorTypesWithEncodingAllowed = ["http", "keyword", "json-query"];
const monitorTypesWithEncodingAllowed = [ "http", "keyword", "json-query" ];
if (this.monitor.type && !monitorTypesWithEncodingAllowed.includes(this.monitor.type)) {
this.monitor.httpBodyEncoding = null;
}