Skip to content
This repository has been archived by the owner on Jan 9, 2022. It is now read-only.

Commit

Permalink
refactor(global): 一些小小的结构调整
Browse files Browse the repository at this point in the history
删除了 EditorConfig 的配置文件;
更新了 .gitignore 文件。
  • Loading branch information
Foair committed Dec 19, 2018
1 parent 4a1d517 commit 78aa42c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 31 deletions.
15 changes: 0 additions & 15 deletions .editorconfig

This file was deleted.

44 changes: 28 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ __pycache__/

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
Expand All @@ -21,9 +20,11 @@ parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
Expand All @@ -38,13 +39,15 @@ pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
Expand All @@ -53,6 +56,7 @@ coverage.xml
# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
Expand All @@ -70,6 +74,10 @@ target/
# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

Expand All @@ -79,13 +87,14 @@ celerybeat-schedule
# SageMath parsed files
*.sage.py

# dotenv
# Environments
.env

# virtualenv
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
Expand All @@ -99,20 +108,23 @@ ENV/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# PyCharm
.idea/

# cookies JSON
/*.json

# course dir
* - */
# Pyre type checker
.pyre/

# Visual Studio Code
.vscode/

# Node
# Node.js
node_modules/
yarn.lock
package.json
.huskyrc
.editorconfig
commitlint.config.js

# draft
draft/

# IDEs/editors
.vscode/
.idea/

0 comments on commit 78aa42c

Please sign in to comment.