-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_history.R
68 lines (41 loc) · 903 Bytes
/
dev_history.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
library(devtools)
library(testthat)
#### Only one time ####
# use_git()
# use_r("calculations")
# use_r("date")
# use_build_ignore("dev_history.R")
# use_gpl3_license("Julie Aubert")
# use_github()
# use_github_links()
# use_testthat()
# use_test("cobiclust")
# use_test("date")
# use_spell_check()
# use_readme_rmd()
# use_lifecycle_badge("maturing")
# badger::badge_last_commit()
# use_news_md()
# use_github_action_check_release()
# use_package_doc()
#### Used regularly ####
load_all()
document()
use_tidy_description()
attachment::att_to_description()
test()
spell_check()
# spelling::update_wordlist()
check()
goodpractice::goodpractice()
covr::package_coverage()
covr::report()
install()
# build()
# use_github_release()
# usethis::use_version()
#### pkgdown ####
pkgdown::build_site()
# pkgdown::template_navbar()
# pkgdown::template_reference()
pkgdown::clean_site()