From 52b7de4e5d2983913f5b3059c4efc8dbfc52f77d Mon Sep 17 00:00:00 2001 From: hut Date: Sat, 27 Aug 2016 00:08:36 +0200 Subject: Revert "Add github issue/PR templates" This reverts commit 0757fe98dcb238133dcac664c972bdecb7b78b65. --- .github/ISSUE_TEMPLATE.md | 5 ----- .github/PULL_REQUEST_TEMPLATE.md | 9 --------- 2 files changed, 14 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 77eb2a81..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,5 +0,0 @@ -* You can obtain much better error messages with `ranger --debug`, please post - those in bug reports rather than the usual, single-line error message. -* Please mention the version of ranger and Python -* If possible, Please give step-by-step instructions to reproduce the bug. -* Send security-relevant bugs PGP-encrypted to hut@hut.pm, see HACKING.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 1aa748ad..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,9 +0,0 @@ -* Use syntax compatible to both python 2.6+ and 3.1+. -* Use docstrings with pydoc in mind -* Follow the style guide for python code: - http://www.python.org/dev/peps/pep-0008/ -* Test the code with "doctest" where it makes sense -* when breaking backward compatibility with old configuration files or plugins, - please include a temporary workaround code that provides a compatibility - layer and mark it with a comment that includes the word "COMPAT". For - examples, grep the code for the word "COMPAT". :) -- cgit 1.4.1-2-gfad0 tats/ranger/container/file.py'>stats
path: root/ranger/container/file.py
blob: 17ca577ce93b7df8b1c452cc63782b8582dac846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111