Skip to content

Commit b05cadf

Browse files
authored
Merge pull request #9 from Podnapisi-NET/dev-config
Dev config
2 parents 3684700 + d4a9550 commit b05cadf

8 files changed

Lines changed: 597 additions & 433 deletions

File tree

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*]
2+
end_of_line = lf
3+
insert_final_newline = true
4+
indent_size = 4
5+
indent_style = space
6+
tab_width = 4
7+
trim_trailing_whitespace = true

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import-order-style=pycharm

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
build
22
dist
3-
Flask*egg-info
3+
Flask*egg-info
4+
.vscode/
5+
.mypy_cache/

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.6"
5+
install:
6+
- pip install -r requirements.txt
7+
- pip install flake8
8+
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then pip install mypy; fi
9+
script:
10+
- if [[ $TRAVIS_PYTHON_VERSION = 2.7 ]]; then flake8; fi
11+
- if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then mypy flask_phpbb3.py; fi

0 commit comments

Comments
 (0)