https://github.com/dice-group/gerbil
Raw File
Tip revision: 1de6f2c01a6fb0bb10debe16866aadaed17b3b58 authored by Michael Röder on 04 April 2024, 15:07:29 UTC
Fixed the definition of IndEL datasets.
Tip revision: 1de6f2c
.editorconfig
# EditorConfig: http://EditorConfig.org
# top-most EditorConfig file
root = true

# all files defaults
[*]
# Unix-style newlines with a newline ending
end_of_line = lf
insert_final_newline = true
# Set default charset
charset = utf-8
# 4 space indentation
indent_style = space
indent_size = 4
# trim whitespaces
trim_trailing_whitespace = true
# always insert final newline
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

# tab for makefiles
[{Makefile, Makefile*, *.xml}]
indent_style = tab
indent_size = 4

# 2 spaces for Dockerfiles
[{Dockerfile, Dockerfile*}]
indent_style = space
indent_size = 2

# 2 spaces for md, yaml, ttl, etc..
[*.{md,yml,iml,json,ttl,ts,js,html,css}]
indent_style = space
indent_size = 2
back to top