Merge pull request #104 from scratchfoundation/renovate/major-eslint-config-scratch

chore(deps): update eslint-config-scratch (major)
This commit is contained in:
Christopher Willis-Ford 2023-12-15 18:25:20 -08:00 committed by GitHub
commit 0326aff4bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 27888 additions and 780 deletions

28659
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -37,6 +37,7 @@
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.2",
"@babel/eslint-parser": "7.23.3",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@commitlint/cli": "7.2.1",
@ -46,8 +47,8 @@
"babel-loader": "^8.0.4",
"cz-conventional-changelog": "^2.1.0",
"docdash": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-scratch": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-scratch": "^9.0.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "0.14.3",

View file

@ -27,7 +27,6 @@ class DeflateStream extends ProxyStream {
set _deflateIndex (value) {
this.chunk.length = value;
this.chunk.lengthCheck = value ^ 0xffff;
return this.chunk.length;
}
writeStruct (StructType, data) {

View file

@ -9,7 +9,6 @@ class ProxyStream {
set uint8a (value) {
this.stream.uint8a = value;
return this.stream.uint8a;
}
get position () {
@ -18,7 +17,6 @@ class ProxyStream {
set position (value) {
this.stream.position = value;
return this.stream.position;
}
writeStruct (StructType, data) {

View file

@ -138,7 +138,6 @@ const Bitmap32BE = new BytePrimitive({
});
let decoder;
/* global TextDecoder:true */
if (typeof TextDecoder === 'undefined') {
decoder = new JSTextDecoder();
} else {