From 57f2069e7240294a0c4eb9abbef67273db19fd47 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Wed, 23 May 2018 18:19:46 +0100 Subject: [PATCH] Make Jekyll ignore .Rproj Port of https://github.com/swcarpentry/r-novice-inflammation/commit/9da857efb16d7351127f2d5c46fc0af660654506. Close swcarpentry/styles#274 --- .gitignore | 1 + bin/boilerplate/_config.yml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cf3b859..8b84b8e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ .sass-cache __pycache__ _site +.Rproj.user diff --git a/bin/boilerplate/_config.yml b/bin/boilerplate/_config.yml index 566baf1..25d4808 100644 --- a/bin/boilerplate/_config.yml +++ b/bin/boilerplate/_config.yml @@ -71,7 +71,8 @@ defaults: # Files and directories that are not to be copied. exclude: - Makefile - - bin + - bin/ + - .Rproj.user/ # Turn on built-in syntax highlighting. -highlighter: rouge \ No newline at end of file +highlighter: rouge -- 2.30.2