Brooke Hatton

Results 8 comments of Brooke Hatton

including scala in the additional languages fixed it for me: ```js prism: { theme: lightCodeTheme, darkTheme: darkCodeTheme, additionalLanguages: ["java", "scala"], }, ```

@bingenito Similar to #311 do you have a preference on prettier formatting? I notice the editor config is 4 spaces indentation but I wonder if 2 spaces would be more...

I also think it would be great if the prettier config was its own package that could be used in all Morgan Stanley open sourced projects, possibly even internally too....

Hey @esamattis would it be possible to get the following, reviewed, merged, and published? Or is this repo no longer maintained?

For uses of withPgClient that do not do mutations, am I right in understanding that by setting `hasSideEffects = false` you can avoid the n+1 problem? This is also hinted...

Also seeing the same issue with postgresql: ### Input ```sql create or replace function find_array_element(el anyelement, arr anyarray) returns integer as $$ declare i int; begin for i in 1..array_upper(...

Similar request, I'd like to have a different stroke array for horizontal vs vertical, so supporting multiple CartesianGrid components would be great

Found a solution ```css .recharts-cartesian-grid-horizontal line { stroke-dasharray: 0; } .recharts-cartesian-grid-vertical line { stroke-dasharray: 3, 3; } ```