Skip to content

Commit 582a538

Browse files
committed
lintr complains about Quarto example sources
1 parent 6f492e6 commit 582a538

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/testthat/quarto-proj-r-shiny/quarto-proj-r-shiny.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ This example is taken from the [Quarto website](https://quarto.org/docs/interact
1515
```{r}
1616
#| panel: sidebar
1717
vars <- setdiff(names(iris), "Species")
18-
selectInput('xcol', 'X Variable', vars)
19-
selectInput('ycol', 'Y Variable', vars, selected = vars[[2]])
20-
numericInput('clusters', 'Cluster count', 3, min = 1, max = 9)
18+
selectInput("xcol", "X Variable", vars)
19+
selectInput("ycol", "Y Variable", vars, selected = vars[[2]])
20+
numericInput("clusters", "Cluster count", 3, min = 1, max = 9)
2121
```
2222

2323
```{r}
2424
#| panel: fill
25-
plotOutput('plot1')
25+
plotOutput("plot1")
2626
```
2727

2828
```{r}

0 commit comments

Comments
 (0)