Skip to content

Commit

Permalink
remove lint errors update build system repair lib
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuelbert committed Sep 7, 2019
1 parent 0b3bafc commit 4b6180f
Show file tree
Hide file tree
Showing 58 changed files with 1,461 additions and 768 deletions.
4 changes: 4 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[run]
include = jmopenorders/*
omit = *tests*
plugins =
6 changes: 5 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
.*
!.coveragerc
!.env
!.pylintrc
# Ignore generated files
**/*.pyc
**/*.pyc
39 changes: 39 additions & 0 deletions .editorconfig
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
44 changes: 24 additions & 20 deletions .gitattributes
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
Loading

0 comments on commit 4b6180f

Please sign in to comment.