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() {
1919 " *.sh"
2020 )
2121 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'
2323 )
2424
2525 doctoc --title ' # FAQ' docs/FAQ.md > /dev/null
@@ -32,13 +32,14 @@ main() {
3232 doctoc --title ' # iPad' docs/ipad.md > /dev/null
3333 doctoc --title ' # Termux' docs/termux.md > /dev/null
3434
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
4243}
4344
4445main " $@ "
You can’t perform that action at this time.
0 commit comments