mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-11-24 08:38:09 -05:00
Merge pull request #104 from scratchfoundation/renovate/major-eslint-config-scratch
chore(deps): update eslint-config-scratch (major)
This commit is contained in:
commit
0326aff4bc
5 changed files with 27888 additions and 780 deletions
28659
package-lock.json
generated
28659
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -138,7 +138,6 @@ const Bitmap32BE = new BytePrimitive({
|
|||
});
|
||||
|
||||
let decoder;
|
||||
/* global TextDecoder:true */
|
||||
if (typeof TextDecoder === 'undefined') {
|
||||
decoder = new JSTextDecoder();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue