Compare commits
No commits in common. "040e04ff2a8daf8230ad5725e41cddaed58fcb5d" and "7dc5441c89e1e3b6ff2c7c8844675fd201d64be4" have entirely different histories.
040e04ff2a
...
7dc5441c89
@ -1,11 +1,9 @@
|
||||
root = true
|
||||
|
||||
[*.{ps1,java}]
|
||||
[*.java]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
trim_trailing_whitespace = true
|
||||
end_of_line = lf
|
||||
|
||||
[*.java]
|
||||
insert_final_newline = true
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
10
clear.ps1
10
clear.ps1
@ -1,10 +0,0 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Delete all compiled files of the current folder and its subfolders.
|
||||
.DESCRIPTION
|
||||
This script deletes all the compiled files of the current folder and its subfolders.
|
||||
.EXAMPLE
|
||||
Delete all compiled files of the current folder and its subfolders.
|
||||
.\Clear
|
||||
#>
|
||||
Get-ChildItem -Path . -Include *.class -File -Recurse | foreach { $_.Delete() }
|
Loading…
Reference in New Issue
Block a user