1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 18:50:54 +00:00

Merge pull request #60 from psychopy/editorConfig

ENH: adds .editorconfig file to repo
This commit is contained in:
Alain Pitiot 2019-06-21 14:00:36 +02:00 committed by GitHub
commit 9c4749d012
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.editorconfig Normal file
View File

@ -0,0 +1,17 @@
# top-most EditorConfig file
root = true
# Don't use tabs for indentation.
[*]
indent_style = space
# (Please don't specify an indent_size here; that has too many unintended consequences.)
# Python files
[*.{py}]
indent_style = tab
indent_size = 4
# HTML+CSS/JS files
[*.{html,css,js}]
indent_style = tab
indent_size = 2