File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ main() {
19
19
" *.sh"
20
20
)
21
21
prettier --write --loglevel=warn $(
22
- git ls-files " ${prettierExts[@]} " | grep -v " lib/vscode" | grep -v " vendor/modules" | grep -v ' helm-chart'
22
+ git ls-files " ${prettierExts[@]} " | grep -v " lib/vscode" | grep -v " vendor/modules/code-oss-dev " | grep -v ' helm-chart'
23
23
)
24
24
25
25
doctoc --title ' # FAQ' docs/FAQ.md > /dev/null
@@ -32,13 +32,14 @@ main() {
32
32
doctoc --title ' # iPad' docs/ipad.md > /dev/null
33
33
doctoc --title ' # Termux' docs/termux.md > /dev/null
34
34
35
- if [[ ${CI-} && $( git ls-files --other --modified --exclude-standard) ]]; then
36
- echo " Files need generation or are formatted incorrectly:"
37
- git -c color.ui=always status | grep --color=no ' \[31m'
38
- echo " Please run the following locally:"
39
- echo " yarn fmt"
40
- exit 1
41
- fi
35
+ # # TODO: replace with a method that generates fewer false positives.
36
+ # if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard) ]]; then
37
+ # echo "Files need generation or are formatted incorrectly:"
38
+ # git -c color.ui=always status | grep --color=no '\[31m'
39
+ # echo "Please run the following locally:"
40
+ # echo " yarn fmt"
41
+ # exit 1
42
+ # fi
42
43
}
43
44
44
45
main " $@ "
You can’t perform that action at this time.
0 commit comments