Kipton Barros

Results 45 issues of Kipton Barros

In this example, the DataInspector visual indicator box does not rotate with the mesh scatter object. ```julia using GLMakie fig = Figure() ax = LScene(fig[1, 1]) marker = Makie._mantle(Point3f(0, 0,...

bug
interaction

The following will segfault on my machine: ``` using FFTW function make_plan() plan = FFTW.plan_fft(zeros(10)) return deepcopy(plan) end plan = make_plan() GC.gc() # presumably C datastructures are freed in this...

I get the above assertion error with the following input, `fei2_classical.md`: ````` ```@meta EditURL = "../../../examples/fei2_classical.jl" ``` ````@example fei2_classical # Calculating S ```` --- *This page was generated using [Literate.jl](https://github.com/fredrikekre/Literate.jl).*...

Type: Bug

The input: ```julia using JuliaFormatter str = """f([a b c d]) """ format_text(str; style=SciMLStyle(), align_matrix=true) ``` gives the error: ``` ERROR: formatted_text hasn't reached to a fixpoint in 4 iterations...

See below. Is the bottom example giving the desired behavior? ```julia code = """ frst_very_very_long_name, scnd_very_very_long_name = scnd_very_very_long_name, frst_very_very_long_name """ # This seems reasonable format_text(code) == """ frst_very_very_long_name, scnd_very_very_long_name =...

Consider this code with a non-idiomatic `catch` statement: ```julia code1 = raw""" try error("Whoops") catch (e) println("Found $e") end """ ``` Julia Formatter moves `(e)` inside the catch block: ```julia...

bug
CSTParser3

Is it possible to add an option that would maintain _absence_ of whitespace around binary operations? Examples where this might come up in a code base: * Keep `[1/2, 1/3,...

```julia using DynamicPolynomials @polyvar x a = [2x, x^2] # Fine to compare individual elements @assert a[1] ≈ a[1] && a[2] == a[2] # ERROR: MethodError: no method matching rtoldefault(...)...

I encountered the following error when trying to use [TestItemRunner](https://github.com/julia-vscode/TestItemRunner.jl) in combination with Julia 1.11-beta: ``` ┌ Error: Some Julia code in the VS Code extension crashed └ @ Main...

Is there a way to disable a single linter warning? For example, I would be happy to write a comment with a special syntax `# [linter:ignore]` to ignore a specific...