mirror of
https://github.com/denoland/deno.git
synced 2025-02-10 08:02:18 -05:00
![Bartek Iwańczuk](/assets/img/avatar_default.png)
This commit adds support for following flags in deno lint subcommand: --config - allows to load configuration file and parses "lint" object --rules-tags=<tags> - allows specifying which set of tagged rules should be run --rules-include=<rules> - allow specifying which rules should be run --rules-exclude=<rules> - allow specifying which rules should not be run
4 lines
76 B
TypeScript
4 lines
76 B
TypeScript
// TODO: foo
|
|
function add(a: number, b: number): number {
|
|
return a + b;
|
|
}
|