From 9c179e681ab1697d10a0e50f46bcedaed24325e7 Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Tue, 4 Aug 2015 14:25:31 +0100 Subject: [PATCH] gitignore: re-order to make exclusions clearer --- .gitignore | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 8cda107..40270c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,19 @@ +# Cached Python bytecode *.pyc -build/ +__pycache__ + +# Setuptools detritus +build +dist *.egg *.egg-info -.*.swp -cover/ +.eggs + +# Test suite detritus +cover .coverage -dist/ +.tox + +# Editor backup files +.*.swp *~