Skip to content

Commit

Permalink
Adjust .editorconfig to 2 spaces everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
bamboo committed Nov 19, 2024
1 parent 2f9dd0e commit bb068fc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 22 deletions.
13 changes: 2 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,10 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[{*.gradle,AndroidManifest.xml}]
indent_style = space
indent_size = 4

[{*.py,SConstruct,SCsub}]
indent_style = space
indent_size = 4

# YAML requires indentation with spaces instead of tabs.
[*.{yml,yaml}]
indent_style = space
indent_size = 2
22 changes: 11 additions & 11 deletions test/test-main.scm
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@
"42"))

(define (all-tests)
(repl-unit-tests)
(golden-scene-tests))
(repl-unit-tests)
(golden-scene-tests))

(catch #t
(lambda ()
(all-tests)
(format #t "✅ Passed~%"))
(lambda (type info)
(let ((p (current-error-port)))
(format p "")
(apply format p info)
(format p "~%"))
(exit 1)))
(lambda ()
(all-tests)
(format #t "✅ Passed~%"))
(lambda (type info)
(let ((p (current-error-port)))
(format p "")
(apply format p info)
(format p "~%"))
(exit 1)))

0 comments on commit bb068fc

Please sign in to comment.