@marimo-team/islands 0.21.2-dev32 → 0.21.2-dev33
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/dist/main.js
CHANGED
|
@@ -29779,7 +29779,9 @@ ${c.sqlString}
|
|
|
29779
29779
|
"D103"
|
|
29780
29780
|
], _ = [
|
|
29781
29781
|
"W292",
|
|
29782
|
-
"E402"
|
|
29782
|
+
"E402",
|
|
29783
|
+
"E302",
|
|
29784
|
+
"E305"
|
|
29783
29785
|
], v = [
|
|
29784
29786
|
"B018",
|
|
29785
29787
|
"I001"
|
|
@@ -70856,7 +70858,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
70856
70858
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
70857
70859
|
}
|
|
70858
70860
|
}
|
|
70859
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.21.2-
|
|
70861
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.21.2-dev33"), showCodeInRunModeAtom = atom(true);
|
|
70860
70862
|
atom(null);
|
|
70861
70863
|
var import_compiler_runtime$89 = require_compiler_runtime();
|
|
70862
70864
|
function useKeydownOnElement(e, r) {
|
package/package.json
CHANGED
|
@@ -69,6 +69,10 @@ const pylspClient = once((lspConfig: LSPConfig) => {
|
|
|
69
69
|
"W292", // No newline at end of file
|
|
70
70
|
// Modules can be imported in any cell
|
|
71
71
|
"E402", // Module level import not at top of file
|
|
72
|
+
// Blank line rules are not useful in marimo because cells are joined
|
|
73
|
+
// without extra blank lines, which can trigger these rules at cell boundaries
|
|
74
|
+
"E302", // Expected 2 blank lines, found 0
|
|
75
|
+
"E305", // Expected 2 blank lines after class or function definition, found 0
|
|
72
76
|
];
|
|
73
77
|
const ignoredRuffRules = [
|
|
74
78
|
// Even ruff documentation of this rule explains it is not useful in notebooks
|