-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
11 lines (11 loc) · 1005 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
LINTSPEC_PATHS=[path/to/file.sol,path/to/dir] # paths to files and folders to analyze
LINTSPEC_EXCLUDE=[path/to/ignore] # paths to files or folders to exclude, see also `.nsignore`
LINTSPEC_INHERITDOC=true # enforce that all overridden, public and external items have `@inheritdoc`
LINTSPEC_CONSTRUCTOR=false # enforce that constructors have natspec
LINTSPEC_STRUCT_PARAMS=false # enforce that structs have `@param` for each member
LINTSPEC_ENUM_PARAMS=false # enforce that enums have `@param` for each variant
LINTSPEC_ENFORCE=[variable,struct] # enforce NatSpec on items even if they don't have params/returns/members
LINTSPEC_ENFORCE_ALL=true # same as passing all possible values to `enforce`. Remove if using LINTSPEC_ENFORCE.
LINTSPEC_JSON=false # output diagnostics as JSON
LINTSPEC_COMPACT=false # compact output (minified JSON or compact text)
LINTSPEC_SORT=false # sort results by file path