You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are various requests and use cases for adding support for custom sections to foundry.toml:
scopelint is a tool for linting forge projects. Instead of having it's own config file, it would be nice to just let users define the settings directly in the forge config file
Currently, you can add a custom section to the config file, but it will trigger a warning:
$ forge test
warning: Unknown section [scopelint] found in foundry.toml. This notation for profiles has been deprecated and may result in the profile not being registered in future versions. Please use [profile.scopelint] instead or run `forge config --fix`.
Therefore, I'd suggest requiring that unknown sections are prefixed with something like external., which makes it clear they are for other tools that extend foundry and we'd suppress the warning for those sections.
Component
Forge
Describe the feature you would like
There are various requests and use cases for adding support for custom sections to
foundry.toml
:Currently, you can add a custom section to the config file, but it will trigger a warning:
Therefore, I'd suggest requiring that unknown sections are prefixed with something like
external.
, which makes it clear they are for other tools that extend foundry and we'd suppress the warning for those sections.For example:
Additional context
No response
The text was updated successfully, but these errors were encountered: