Skip to content

Commit b086a87

Browse files
gibsondanDagster Devtools
authored andcommitted
fix prettier (#25768)
## Summary & Motivation ## Test Plan ## Changelog > The changelog is generated by an agent that examines merged PRs and > summarizes/categorizes user-facing changes. You can optionally replace > this text with a terse description of any user-facing changes in your PR, > which the agent will prioritize. Otherwise, delete this section. Internal-RevId: e09d2987c64dd16974cec6a495583c2101b33747
1 parent 8208457 commit b086a87

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

justfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ check_prettier:
2424
':!:README.md' ':!:GEMINI.md') \
2525
--check
2626
27+
prettier:
28+
#!/usr/bin/env bash
29+
set -euo pipefail
30+
prettier $(git ls-files \
31+
'python_modules/*.yml' 'python_modules/*.yaml' 'helm/*.yml' 'helm/*.yaml' \
32+
'*.md' '.claude/*.md' \
33+
':!:docs/*.md' ':!:helm/**/templates/*.yml' ':!:helm/**/templates/*.yaml' \
34+
':!:README.md' ':!:GEMINI.md') \
35+
--write
36+
2737
ty:
2838
#!/usr/bin/env bash
2939
set -euo pipefail

python_modules/automation/automation_tests/__snapshots__/spark_confs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2282,7 +2282,7 @@ Also, you can modify or add configurations at runtime:
22822282
./bin/spark-submit \
22832283
--name "My app" \
22842284
--master local[4] \
2285-
--conf spark.eventLog.enabled=false \
2285+
--conf spark.eventLog.enabled=false \
22862286
--conf "spark.executor.extraJavaOptions=-XX:+PrintGCDetails -XX:+PrintGCTimeStamps" \
22872287
--conf spark.hadoop.abc.def=xyz \
22882288
myApp.jar

0 commit comments

Comments
 (0)