Klaus Hott Vidal

Results 16 issues of Klaus Hott Vidal

Since `go-pg` already knows what the table names and foreign keys are there could be a `JoinRelation()`. It could work like this: ```Golang // Normal Join db.Model(&items). Join(`INNER JOIN "items_to_orders"...

When I already have a model in memory and I want to load a relation of that model I do something like this: ```Golang db.Model(&user). Column("_"). WherePK(). Relation("Roles"). Select() ```...

I know that this one is a difficult one as stated in #885 But I'd like to present my use case. I have files that can be attached to many...

addressing some issues with comments in chains. #644 For now we are grouping comments at the beginning of the chain. This is a good first step however we must address...

Given the last few issues I started reviewing what we were missing from the list of node types of the parser. According to solidity parsers [node list](https://github.com/solidity-parser/parser/blob/9093db3844327304f6a4bf6266405fbd4c81b06b/index.d.ts#L17) we are still...

enhancement

- [prettier logo](https://raw.githubusercontent.com/prettier/prettier-logo/master/images/prettier-banner-light.png) ![prettier logo](https://raw.githubusercontent.com/prettier/prettier-logo/master/images/prettier-banner-light.png) - [solidity logo](http://solidity.readthedocs.io/en/v0.4.24/_images/logo.svg) ![solidity logo](http://solidity.readthedocs.io/en/v0.4.24/_images/logo.svg) Proposal ![prettier-solidity](https://user-images.githubusercontent.com/1022054/59317198-f1149b80-8d15-11e9-9b0f-0c5e7d4b8b81.png) ![prettier-solidity black and white](https://user-images.githubusercontent.com/1022054/59317197-f07c0500-8d15-11e9-92c8-b360b43ae00c.png)

help wanted
question

when running the latest code of master against openzepellin contracts there are many errors because of the natspec feature. for example when running it against `contracts/mocks/ERC165/ERC165InterfacesSupported.sol` I get these errors....

Hey @juanfranblanco, I really like how you embraced [prettier-plugin-solidity](https://github.com/prettier-solidity/prettier-plugin-solidity). There are however a few differences between using the prettier extension directly with our plugin in the `node-modules` folder and using...

As I proposed on https://github.com/yujinakayama/atom-lint/issues/48 users should have more control on the warnings we see. That approach was too complicated since it was too difficult to maintain. But now (at...

This update gets our testing framework closer to what's needed when prettier v3 releases so changes when we start supporting v3 will be minimal. Main changes are: - have 1...