Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit d2eca4a

Browse files
author
ranrib
committedSep 30, 2018
Initial commit.
0 parents  commit d2eca4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+5153
-0
lines changed
 

‎.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.idea
2+
*.pyc
3+
.pypirc
4+
.coverage
5+
.cache
6+
dist
7+
.eggs
8+
.pytest_cache
9+
build
10+
epsagon.egg-info

‎.pylintrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Based on:
2+
# https://github.com/kpreid/shinysdr/blob/master/pylintrc
3+
4+
[MASTER]
5+
# XXX should be changed to your project folder
6+
# see http://stackoverflow.com/a/37238692/3828891 for explanation
7+
init-hook='base_dir="epsagon"; import sys,os,re; _re=re.search(r".+\/" + base_dir, os.getcwd()); project_dir = _re.group() if _re else os.path.join(os.getcwd(), base_dir); sys.path.append(project_dir)'
8+
9+
[MESSAGES CONTROL]
10+
# Find available symbolic names in:
11+
# https://docs.pylint.org/features.html
12+
disable=duplicate-code,too-few-public-methods,too-many-arguments,fixme,too-many-instance-attributes,bad-continuation,useless-object-inheritance
13+
14+
[FORMAT]
15+
# Maximum number of characters on a single line.
16+
max-line-length=80
17+
18+
# Maximum number of lines in a module
19+
max-module-lines=500

0 commit comments

Comments
 (0)
This repository has been archived.