forked from r-lib/lintr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
96 lines (96 loc) · 2.35 KB
/
DESCRIPTION
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
Package: lintr
Title: A 'Linter' for R Code
Version: 2.0.1.9000
Authors@R: c(
person("Jim", "Hester", email = "[email protected]", role = c("aut", "cre")),
person("Florent", "Angly", role = "aut"),
person("Russ", "Hyde", role = "aut")
)
URL: https://github.com/jimhester/lintr
BugReports: https://github.com/jimhester/lintr/issues
Description: Checks adherence to a given style, syntax errors and possible semantic issues.
Supports on the fly checking of R code edited with 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text',
'Atom' and 'Visual Studio Code'.
Depends:
R (>= 3.2)
Imports:
rex,
crayon,
codetools,
cyclocomp,
testthat (>= 2.2.1),
digest,
rstudioapi (>= 0.2),
httr (>= 1.2.1),
jsonlite,
knitr,
stats,
utils,
xml2 (>= 1.0.0),
xmlparsedata (>= 1.0.3)
Suggests:
rmarkdown,
mockery,
withr
License: MIT + file LICENSE
LazyData: true
Encoding: UTF-8
VignetteBuilder: knitr
RoxygenNote: 7.1.1
Collate:
'utils.R'
'aaa.R'
'T_and_F_symbol_linter.R'
'actions.R'
'addins.R'
'assignment_linter.R'
'assignment_spaces_linter.R'
'backport_linter.R'
'cache.R'
'closed_curly_linter.R'
'commas_linter.R'
'comment_linters.R'
'comments.R'
'cyclocomp_linter.R'
'declared_functions.R'
'object_name_linters.R'
'deprecated.R'
'equals_na_linter.R'
'exclude.R'
'expect_lint.R'
'extract.R'
'extraction_operator_linter.R'
'function_left_parentheses.R'
'get_source_expressions.R'
'ids_with_token.R'
'implicit_integer_linter.R'
'infix_spaces_linter.R'
'line_length_linter.R'
'lint.R'
'make_linter_from_regex.R'
'methods.R'
'missing_argument_linter.R'
'missing_package_linter.R'
'namespace.R'
'namespace_linter.R'
'no_tab_linter.R'
'object_usage_linter.R'
'open_curly_linter.R'
'paren_brace_linter.R'
'path_linters.R'
'pipe_continuation_linter.R'
'semicolon_terminator_linter.R'
'seq_linter.R'
'settings.R'
'single_quotes_linter.R'
'spaces_inside_linter.R'
'spaces_left_parentheses_linter.R'
'sprintf_linter.R'
'trailing_blank_lines_linter.R'
'trailing_whitespace_linter.R'
'tree-utils.R'
'undesirable_function_linter.R'
'undesirable_operator_linter.R'
'unneeded_concatenation_linter.R'
'with_id.R'
'zzz.R'