Skip to content
#

tooling

Here are 478 public repositories matching this topic...

next.js
alcuadrado
alcuadrado commented Jun 1, 2021

This is a bug report of an edge case that can only happen if you have a hardhat project inside a monorepo, and the hardhat project is also an npm project p.

If a solidity file within p imports another one using import "p/contracts/...", the compilation will fail. The reason for this is that the file ends up with two source names p/contract/... and contracts/....

This only happens w

bbatsov
bbatsov commented Aug 14, 2020

Currently the eldoc type is either function or variable:

(defn- extract-eldoc
  [info]
  (if-let [arglists (seq (-> info extract-arglists format-arglists))]
    {:eldoc arglists :type "function"}
    {:type "variable"}))

This means that the result users see is not particularly accurate, not to mention that the function check is pretty primitive. We should add types like `m

log4brains

Improve this page

Add a description, image, and links to the tooling topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tooling topic, visit your repo's landing page and select "manage topics."

Learn more