eslint: Update file-based rule overrides

This commit is contained in:
willclarktech
2020-07-15 13:29:21 +02:00
parent 5e3db6dcfe
commit 6d387412af
63 changed files with 64 additions and 50 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env node
/* eslint-disable @typescript-eslint/camelcase */
/* eslint-disable @typescript-eslint/naming-convention */
require("source-map-support").install();
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
+2
View File
@@ -1,7 +1,9 @@
// Global symbols in some environments
// https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder
// https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder
/* eslint-disable-next-line @typescript-eslint/naming-convention */
declare const TextEncoder: any | undefined;
/* eslint-disable-next-line @typescript-eslint/naming-convention */
declare const TextDecoder: any | undefined;
function isValidUtf8(data: Uint8Array): boolean {