Skip to content

Commit 3d96bab

Browse files
authored
MINOR: [R] Fix .lintr config file for updated lintr dependency (#38639)
### Rationale for this change The lint CI job is failing because an update to a dependency of lintr now does more strict DCF checking on the .lintr file ### What changes are included in this PR? The 'license' field was wrapped in quotes so that .lintr passes validation ### Are these changes tested? Yes, by existing CI job ### Are there any user-facing changes? No Authored-by: Dewey Dunnington <dewey@voltrondata.com> Signed-off-by: Antoine Pitrou <antoine@python.org>
1 parent e62ec62 commit 3d96bab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

r/.lintr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
license: # Licensed to the Apache Software Foundation (ASF) under one
1+
license: '# Licensed to the Apache Software Foundation (ASF) under one
22
# or more contributor license agreements. See the NOTICE file
33
# distributed with this work for additional information
44
# regarding copyright ownership. The ASF licenses this file
@@ -13,7 +13,7 @@ license: # Licensed to the Apache Software Foundation (ASF) under one
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
16-
# under the License.
16+
# under the License.'
1717
linters: linters_with_defaults(
1818
indentation_linter = NULL,
1919
line_length_linter = line_length_linter(120),

0 commit comments

Comments
 (0)