yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
fcffce79d
master
1# This file sets up basic text editor behavior 2# using EditorConfig: http://EditorConfig.org. 3# 4# Some editors will import and use the settings from 5# this file automatically, while others need a plugin. 6 7# Editors are supposed to search upwards from a source 8# file to find configuration settings until they see 9# a "root" file. This file should be a root: 10# 11root= true 12 13# Shared configuration for all C/C++ and Slang code 14# 15[ *.{c,cpp,h,slang} ] 16 17# Use UTF-8 encoding 18# 19charset = utf-8 20 21# Indent using 4 spaces. 22# 23indent_style = space 24indent_size = 4 25 26# Insert a newline at the end of the file 27# if one is missing (this used to be officially 28# required by C, but it is also just a tidyness thing) 29# 30insert_final_newline = true 31 32# Removing end of line whitespace is somewhat desirable, but 33# seems to add unwanted noise to PRs. This is especially when different 34# contributors source editors may or may not honor this setting. 35# So disable for now. 36trim_trailing_whitespace = false