Skip to content

Commit b86d077

Browse files
committed
Initial public commit of the GraphQL compiler project.
0 parents  commit b86d077

Some content is hidden

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

49 files changed

+13522
-0
lines changed

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Py.test generated files
2+
**/__pycache__/
3+
4+
# Apple file system litter
5+
.DS_Store
6+
7+
# Python generated files
8+
*.py[cod]
9+
10+
# Installer logs
11+
pip-log.txt
12+
13+
# Unit test / coverage reports
14+
.cache/
15+
.coverage
16+
nosetests.xml
17+
18+
# temporary files
19+
*.orig
20+
*~
21+
.*~
22+
*.swo
23+
*.swp
24+
25+
# Virtual environment
26+
**/venv/
27+
28+
# Python autogenerated egg files and folders
29+
*.egg-info
30+
*.egg-ignore
31+
32+
# Any IDE-generated files (pycharm, Sublime)
33+
.idea
34+
.idea/
35+
.idea/*
36+
*.sublime-*
37+
38+
# Sphinx docs
39+
tools/sphinx_docgen/docs_rst
40+
tools/sphinx_docgen/docs_html

.pydocstyle

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[pydocstyle]
2+
ignore = D100,D101,D104,D203,D213,D406,D407,D408,D409,D413

0 commit comments

Comments
 (0)