Skip to content

Commit 813b0eb

Browse files
committed
dev: fix Makefile spaces to tabs
1 parent 1744d1b commit 813b0eb

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

Makefile

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
install:
2-
Rscript -e "install.packages(c('devtools', 'pkgdown', 'webshot', 'textshaping', 'styler', 'lintr'));devtools::install_deps(dependencies = TRUE)"
2+
Rscript -e "install.packages(c('devtools', 'pkgdown', 'webshot', 'textshaping', 'styler', 'lintr'));devtools::install_deps(dependencies = TRUE)"
33
lint:
4-
Rscript -e "devtools::load_all();lintr::lint_package()"
4+
Rscript -e "devtools::load_all();lintr::lint_package()"
55
format:
6-
Rscript -e "styler::style_pkg()"
6+
Rscript -e "styler::style_pkg()"
77
test:
8-
Rscript -e "devtools::test()"
9-
build:
10-
Rscript -e "devtools::document();devtools::build()"
8+
Rscript -e "devtools::test()"
9+
document:
10+
Rscript -e "devtools::document()"
11+
build: document
12+
Rscript -e "devtools::build()"
1113
check:
12-
Rscript -e "devtools::check(args = c('--no-manual', '--as-cran'), error_on = 'error')"
14+
Rscript -e "devtools::check(args = c('--no-manual', '--as-cran'), error_on = 'warning')"
15+
chores: format lint check

0 commit comments

Comments
 (0)