Files
source/Editor
Marco Antonio J. Costaandmajcosta 86ad401186 add newline at end of file where it's lacking
.editorconfig already enforces it but it's getting changed piecemeal in
every commit. just get it done with.

the script:
```

find . -type f -not -path "./.git/*" -not -path "./.vs/*" | while read -r file; do
	isFile=$(file -0 "$file" | cut -d $'\0' -f2)
	case "$isFile" in
		(*text*)
			echo "$file is text"
			if [[ $(tail -c 1 "$file" | wc -l) -ne 1 ]]; then
				echo "" >> "$file"
			fi
			;;
		(*)
			echo "file isn't text"
			;;
	esac
done
```
2024-12-14 19:05:48 -03:00
..
2023-01-14 02:08:39 -03:00
2023-01-03 15:51:48 +02:00
2014-03-02 11:25:11 +00:00
2023-01-19 00:13:08 +02:00
2023-01-19 00:13:08 +02:00
2014-03-02 11:25:11 +00:00
2023-01-19 00:13:08 +02:00
2014-03-02 11:25:11 +00:00
2024-01-27 14:29:51 +02:00
2023-01-19 00:13:08 +02:00
2014-02-18 07:47:19 +00:00
2023-10-08 16:45:06 +03:00
2023-10-08 16:45:06 +03:00
2023-01-03 15:51:48 +02:00
2023-01-03 15:51:48 +02:00
2023-01-03 15:51:48 +02:00
2023-10-08 16:48:18 +03:00
2023-01-03 15:51:48 +02:00
2023-01-03 15:51:48 +02:00