-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
featnew feature (which has been agreed to/accepted)new feature (which has been agreed to/accepted)
Description
Part of #3179
- Deno will lookup a file called
Deno.json
in the current working directory on startup. - This
Deno.json
can also be specified by the already existing--config
flag Deno.json
can have a top-level"compilerOptions"
for configuring typescript.- We will initially support one other top-level configuration called
"lint"
which will allow people to configure howdeno lint
works. Example:
{
"compilerOptions": {
"jsxFactory": "h"
},
"lint": {
"ignore": ["testdata/"],
"rules": {
"tags": ["recommended"],
"include": [
"ban-untagged-todo"
]
}
}
}
magurotuna, aricart, Conaclos, eseiker, aydencook03 and 1 morejaydenseric, dburles and andykais
Metadata
Metadata
Assignees
Labels
featnew feature (which has been agreed to/accepted)new feature (which has been agreed to/accepted)