brado 1.1.0

brado is a brazilian docs validator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SHELL := /bin/bash

fmt:
	reset
	cargo fmt $(args)

test:
	reset
	if [[ "$(mod)" = "" ]]; then \
	    cargo test $(args) ; \
	else \
 	    cargo test --test $(mod) $(args) ; \
	fi;

clippy:
	reset
	cargo clippy $(args)