From d997c15c1880371f651d5e25d0798591ff764c4b Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Wed, 10 Aug 2016 08:23:54 -0400 Subject: [PATCH] Exclude any direnv artifacts from project - ignore from VCS - ignore in sphinx renderer --- .gitignore | 6 ++++-- conf.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ff897c4..345be11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -_build/ -*.swp *.swo +*.swp .DS* +.direnv/ +.envrc +_build/ diff --git a/conf.py b/conf.py index b61aff6..3a5887c 100644 --- a/conf.py +++ b/conf.py @@ -64,7 +64,7 @@ release = '0.1' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ['_build', '.direnv', 'README.md'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None