Daniel Pinyol
Daniel Pinyol
I suggest adding quote_type as standard option as specified at https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#ideas-for-domain-specific-properties imho it's a very useful option at least relevant for JS, TS & python. Users are asking for its...
With normal Dict I can ```julia b=Dict(3=>4) map!(v->v*2, values(b)) b Dict{Int64, Int64} with 1 entry: 3 => 8 ``` With SortedDict I can't ```julia a=SortedDict(2=>3) map!(v->v*2, values(a)) ERROR: MethodError: no...
Hi, The limitation to [not include files containing testsets from within testsets](https://juliatesting.github.io/ReTest.jl/stable/#Including-files-from-within-testsets) is a showstopper for our project, since we have our tests within a hierarchy of folders mimicking the...
I get this error ``` Error: Cannot find module 'jest-core/build/SearchSource' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:548:15) at Function.Module._load (internal/modules/cjs/loader.js:475:25) at Module.require (internal/modules/cjs/loader.js:598:17) at require (internal/modules/cjs/helpers.js:11:18) at tryRequire (/Users/dani/hubtype/botonic/packages/botonic-plugin-contentful/node_modules/jest-webpack/src/test-entries-plugin.js:19:9) at module.exports.attempts (/Users/dani/hubtype/botonic/packages/botonic-plugin-contentful/node_modules/jest-webpack/src/try-require.js:5:23) at Object....
Hi, after patching JET.jl with [this not yet merged PR](https://github.com/aviatesk/JET.jl/pull/380), it's now possible to run `report_package(Metatheory)` with Julia 1.8. The current PR fixes most real issues reported by JET. Namely:...
Hi, I use DaemonMode to run my unit tests. If I interrupt the execution with CTRL-C, the client aborts but the server sometimes continues running the tests. Is there any...
deleteat! and keepat! are available only for dense arrays. thanks
A false positive is reported by JET 0.8.12 (also in 0.8.14) which did not appear on 0.8.11. Reproducible in julia 1.9.3 & 1.10.0beta3 I attach complete MWE [BoundsCircular.zip](https://github.com/aviatesk/JET.jl/files/12890952/BoundsCircular.zip) thanks ```julia...
A false positive is reported by JET 0.8.12 (also in 0.8.14) which did not appear on 0.8.11. Reproducible in julia 1.9.3 & 1.10.0beta3 ```julia module ParametrizedKwdef Base.@kwdef mutable struct ST{O...
### Current problem According to https://pylint.readthedocs.io/en/latest/user_guide/messages/warning/unused-private-member.html, it is > Emitted when a private member of a class is defined but not used. However, the example code is ``` def __print_color(self):...