From 473c1753ad2b0a3b4fea84699bed7077a4c1d843 Mon Sep 17 00:00:00 2001 From: Shiva Vinodkumar <127319648+shiva24082@users.noreply.github.com> Date: Fri, 3 Jul 2026 10:05:05 +0530 Subject: [PATCH 1/3] Add/Update CODE_OF_CONDUCT.md to improve repository standards --- CODE_OF_CONDUCT.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..3373945 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,55 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best for the overall community, not just for us as + individuals + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and unwelcome sexual attention or + advances +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. + +## Reporting & Contact + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the repository owners. All complaints will be reviewed and investigated +promptly and fairly. From c5bdd7b03653ac956f821b0ce7f1476eb7d6c626 Mon Sep 17 00:00:00 2001 From: Shiva Vinodkumar <127319648+shiva24082@users.noreply.github.com> Date: Fri, 3 Jul 2026 10:05:06 +0530 Subject: [PATCH 2/3] Add/Update SECURITY.md to improve repository standards --- SECURITY.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..9ebaa2f --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,11 @@ +# Security Policy + +## Supported Versions + +Only the latest stable release builds are supported with security patches. + +## Reporting a Vulnerability + +If you identify a security vulnerability in the lingbot-map model (such as CUDA memory corruption bugs, exploit vectors in datasets preprocessing scripts, or streaming input overflow vulnerability), please do **not** open a public issue. + +Please report vulnerabilities privately by emailing the maintainers or using GitHub's private vulnerability reporting feature. From ae3509b5767e84075b4a0e707f437162bb075715 Mon Sep 17 00:00:00 2001 From: Shiva Vinodkumar <127319648+shiva24082@users.noreply.github.com> Date: Fri, 3 Jul 2026 10:05:08 +0530 Subject: [PATCH 3/3] Add/Update .editorconfig to improve repository standards --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e76d929 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.py] +indent_style = space +indent_size = 4