-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove lint errors update build system repair lib
- Loading branch information
Showing
58 changed files
with
1,461 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[run] | ||
include = jmopenorders/* | ||
omit = *tests* | ||
plugins = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
.* | ||
!.coveragerc | ||
!.env | ||
!.pylintrc | ||
# Ignore generated files | ||
**/*.pyc | ||
**/*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file is for unifying the coding style for different editors and IDEs. | ||
# More information at http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Matches the exact files either package.json or .travis.yml | ||
[{package.json,.travis.yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.scss] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.coffee] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Override for Makefile | ||
[{Makefile, makefile, GNUmakefile}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
# Fix GitHub thinking our translations are TypeScript | ||
*.ts linguist-language=XML | ||
# Git will handle the files in whatever way it thinks is best | ||
* text=auto | ||
|
||
# Don't count the translation files in the language stats | ||
translations/* linguist-vendored | ||
|
||
* text=auto | ||
|
||
*.cpp text | ||
*.h text | ||
*.ui text | ||
# Always convert line endings to LF on checkout | ||
*.py text eol=lf | ||
*.coffee text eol=lf | ||
*.js text eol=lf | ||
*.scss text eol=lf | ||
*.css text eol=lf | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.rst text eol=lf | ||
*.text text eol=lf | ||
*.yml text eol=lf | ||
*.po text eol=lf | ||
|
||
# fix bootstrap.sh on Windows MSYS | ||
*.sh eol=lf | ||
*.bat eol=crlf | ||
|
||
*.png binary | ||
*.sh eol=lf | ||
*.bat eol=crlf | ||
|
||
.gitignore export-ignore | ||
.gitattributes export-ignore | ||
.mailmap export-ignore | ||
.tx export-ignore | ||
.LICENSE-HEADER export-ignore | ||
.travis.yml export-ignore | ||
# Files that are truly binary and should not be modified | ||
*.png binary | ||
*.jpg binary | ||
*.ico binary | ||
*.svg binary | ||
*.ttf binary | ||
*.woff binary | ||
*.mo binary |
Oops, something went wrong.