We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07fcd7 commit 82115d1Copy full SHA for 82115d1
2 files changed
.markdownlint.json
@@ -3,5 +3,8 @@
3
"allowed_elements": [ "details", "summary", "br" ]
4
},
5
"line-length": false,
6
+ "no-duplicate-heading": {
7
+ "siblings_only": true
8
+ },
9
"no-trailing-punctuation": false
-}
10
+}
R/session/vsc.R
@@ -117,8 +117,8 @@ dataview_table <- local({
117
metadata_only = FALSE, force = FALSE) {
118
119
if (!is.data.frame(data) && !is.matrix(data) &&
120
- !inherits(data, "ArrowTabular") &&
121
- !inherits(data, "polars_data_frame")) {
+ !inherits(data, "ArrowTabular") &&
+ !inherits(data, "polars_data_frame")) {
122
stop("data must be a data frame, a matrix or an arrow table object.")
123
}
124
0 commit comments