Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

# YAML requires indentation with spaces instead of tabs.
[*.{js,yml,yaml}]
indent_style = space
indent_size = 2

# Makefile requires tab indentation.
[Makefile]
indent_style = tab
indent_size = 4
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Properly detect languages on GitHub
*.rst linguist-detectable=true

# Normalize EOL for all files that Git considers text files
* text=auto eol=lf
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sphinx==1.8.5 # pyup: <2.0.0
sphinx_rtd_theme==0.4.3

# Code tabs extension for GDScript/C#
sphinx-tabs==1.1.13
sphinx-tabs==3.2.0

# Custom 404 error page (more useful than the default)
sphinx-notfound-page==0.6
Expand Down