@astral-sh/ruff-wasm-web 0.5.4 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +25 -0
- package/package.json +1 -1
- package/ruff_wasm.js +4 -4
- package/ruff_wasm_bg.wasm +0 -0
package/LICENSE
CHANGED
|
@@ -1371,3 +1371,28 @@ are:
|
|
|
1371
1371
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1372
1372
|
SOFTWARE.
|
|
1373
1373
|
"""
|
|
1374
|
+
|
|
1375
|
+
- pydoclint, licensed as follows:
|
|
1376
|
+
"""
|
|
1377
|
+
MIT License
|
|
1378
|
+
|
|
1379
|
+
Copyright (c) 2023 jsh9
|
|
1380
|
+
|
|
1381
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1382
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1383
|
+
in the Software without restriction, including without limitation the rights
|
|
1384
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1385
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1386
|
+
furnished to do so, subject to the following conditions:
|
|
1387
|
+
|
|
1388
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1389
|
+
copies or substantial portions of the Software.
|
|
1390
|
+
|
|
1391
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1392
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1393
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1394
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1395
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1396
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1397
|
+
SOFTWARE.
|
|
1398
|
+
"""
|
package/package.json
CHANGED
package/ruff_wasm.js
CHANGED
|
@@ -561,6 +561,10 @@ function __wbg_get_imports() {
|
|
|
561
561
|
const ret = getObject(arg0) === undefined;
|
|
562
562
|
return ret;
|
|
563
563
|
};
|
|
564
|
+
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
565
|
+
const ret = getObject(arg0) == getObject(arg1);
|
|
566
|
+
return ret;
|
|
567
|
+
};
|
|
564
568
|
imports.wbg.__wbindgen_number_new = function(arg0) {
|
|
565
569
|
const ret = arg0;
|
|
566
570
|
return addHeapObject(ret);
|
|
@@ -569,10 +573,6 @@ function __wbg_get_imports() {
|
|
|
569
573
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
570
574
|
return addHeapObject(ret);
|
|
571
575
|
};
|
|
572
|
-
imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) {
|
|
573
|
-
const ret = getObject(arg0) == getObject(arg1);
|
|
574
|
-
return ret;
|
|
575
|
-
};
|
|
576
576
|
imports.wbg.__wbg_String_b9412f8799faab3e = function(arg0, arg1) {
|
|
577
577
|
const ret = String(getObject(arg1));
|
|
578
578
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
package/ruff_wasm_bg.wasm
CHANGED
|
Binary file
|