Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .deepsource.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version = 1

[[analyzers]]
name = "python"
enabled = true

[analyzers.meta]
runtime_version = "3.x.x"

[[analyzers]]
name = "ruby"
enabled = true

[[analyzers]]
name = "javascript"
enabled = true

[[analyzers]]
name = "shell"
enabled = true
2 changes: 1 addition & 1 deletion platform/apple/scripts/swiftlint.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,4 @@ def main():


if __name__ == "__main__":
exit(main())
sys.exit(main())
3 changes: 2 additions & 1 deletion scripts/gg_decode_annot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import argparse
import os
import os.path
import sys

# Generate absolute paths for needed dirs and scripts
scripts_dir = os.path.dirname(os.path.realpath(__file__))
Expand Down Expand Up @@ -35,4 +36,4 @@ def main():


if __name__ == "__main__":
exit(main())
sys.exit(main())
2 changes: 1 addition & 1 deletion xp/build/scripts/gg_process_version_info_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ def update_placeholders(match):


if __name__ == "__main__":
exit(main())
sys.exit(main())