https://github.com/Kappa-Dev/KaSim
Raw File
Tip revision: 252293115762e4763c934e563ebb676e8b49ac8b authored by dependabot[bot] on 07 July 2020, 11:10:25 UTC
Bump electron from 4.2.12 to 9.1.0 in /gui
Tip revision: 2522931
.editorconfig
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{ml,js}]
charset = utf-8

# 2 space indentation
[*.ml]
indent_style = space
indent_size = 2

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Indentation override for all JS under viz directory
[viz/**.js]
indent_style = space
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
back to top