Skip to content

Commit 866530f

Browse files
Publishing R3
1 parent c37d466 commit 866530f

File tree

6,788 files changed

+1431632
-2
lines changed

Some content is hidden

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

6,788 files changed

+1431632
-2
lines changed

.coveragerc

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# .coveragerc to control coverage.py
2+
[run]
3+
branch = True
4+
5+
source =
6+
mo/
7+
mo.py
8+
9+
omit =
10+
# omit anything in a .local directory anywhere
11+
*/.local/*
12+
# omit everything in /usr
13+
/usr/*
14+
# omit tests
15+
*/test_*.py
16+
# init scripts
17+
*/__init__.py
18+
19+
[report]
20+
# Regexes for lines to exclude from consideration
21+
exclude_lines =
22+
# Have to re-enable the standard pragma
23+
pragma: no cover
24+
25+
# Don't complain about missing debug-only code:
26+
def __repr__
27+
28+
# Don't complain if tests don't hit defensive assertion code:
29+
raise AssertionError
30+
raise NotImplementedError
31+
32+
# Don't complain if non-runnable code isn't run:
33+
if 0:
34+
if __name__ == .__main__.:
35+
36+
ignore_errors = True
37+
38+
[html]
39+
directory = htmlcov

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_size = 4
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
# 4 space indentation
11+
#[*.py]
12+
#indent_style = space
13+
#indent_size = 4
14+
15+
#[{CMakeLists.txt,*.cmake}]
16+
#indent_style = space
17+
#indent_size = 4
18+
19+
#[*.{c,cpp,h,hpp}]
20+
#indent_style = space
21+
#indent_size = 4

.gitattributes

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
*.py text eol=lf
16+
17+
###############################################################################
18+
# Set the merge driver for project and solution files
19+
#
20+
# Merging from the command prompt will add diff markers to the files if there
21+
# are conflicts (Merging from VS is not affected by the settings below, in VS
22+
# the diff markers are never inserted). Diff markers may cause the following
23+
# file extensions to fail to load in VS. An alternative would be to treat
24+
# these files as binary and thus will always conflict and require user
25+
# intervention with every merge. To do so, just uncomment the entries below
26+
###############################################################################
27+
#*.sln merge=binary
28+
#*.csproj merge=binary
29+
#*.vbproj merge=binary
30+
#*.vcxproj merge=binary
31+
#*.vcproj merge=binary
32+
#*.dbproj merge=binary
33+
#*.fsproj merge=binary
34+
#*.lsproj merge=binary
35+
#*.wixproj merge=binary
36+
#*.modelproj merge=binary
37+
#*.sqlproj merge=binary
38+
#*.wwaproj merge=binary
39+
40+
###############################################################################
41+
# behavior for image files
42+
#
43+
# image files are treated as binary by default.
44+
###############################################################################
45+
#*.jpg binary
46+
#*.png binary
47+
#*.gif binary
48+
49+
###############################################################################
50+
# diff behavior for common document formats
51+
#
52+
# Convert binary document formats to text before diffing them. This feature
53+
# is only available from the command line. Turn it on by uncommenting the
54+
# entries below.
55+
###############################################################################
56+
#*.doc diff=astextplain
57+
#*.DOC diff=astextplain
58+
#*.docx diff=astextplain
59+
#*.DOCX diff=astextplain
60+
#*.dot diff=astextplain
61+
#*.DOT diff=astextplain
62+
#*.pdf diff=astextplain
63+
#*.PDF diff=astextplain
64+
#*.rtf diff=astextplain
65+
#*.RTF diff=astextplain

0 commit comments

Comments
 (0)