awacke1 commited on
Commit
ef5500b
·
1 Parent(s): 17a9849

Create new file

Browse files
Files changed (1) hide show
  1. setup.cfg +17 -0
setup.cfg ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [isort]
2
+ default_section = FIRSTPARTY
3
+ ensure_newline_before_comments = True
4
+ force_grid_wrap = 0
5
+ include_trailing_comma = True
6
+
7
+ line_length = 119
8
+ lines_after_imports = 2
9
+ multi_line_output = 3
10
+ use_parentheses = True
11
+
12
+ [flake8]
13
+ ignore = E203, E501, E741, W503, W605
14
+ max-line-length = 119
15
+
16
+ [tool:pytest]
17
+ doctest_optionflags=NUMBER NORMALIZE_WHITESPACE ELLIPSIS