From 1fb77ae003ce89fb001e291b032bc7a42f40b37e Mon Sep 17 00:00:00 2001 From: Lorenzo Colitti Date: Thu, 26 Nov 2020 18:13:41 +0900 Subject: [PATCH 1/3] Add a .gitignore in packages/modules/Connectivity. Test: None Change-Id: I23ca7980db01b3f32e94876fa9a0b3952cf29914 --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..ccff05290a --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Eclipse project +**/.classpath +**/.project + +# IntelliJ project +**/.idea +**/*.iml +**/*.ipr From a7d3c79a7669d439866cfe1532f44584387f185a Mon Sep 17 00:00:00 2001 From: Lorenzo Colitti Date: Fri, 27 Nov 2020 17:11:56 +0900 Subject: [PATCH 2/3] Add repo hooks for packages/modules/Connectivity. This adds the Java and Kotlin linters. Test: repo upload Change-Id: Ic508b17ed0b4e33c41debbbeb7a6c0406c46a973 --- PREUPLOAD.cfg | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 PREUPLOAD.cfg diff --git a/PREUPLOAD.cfg b/PREUPLOAD.cfg new file mode 100644 index 0000000000..ebc1264c7a --- /dev/null +++ b/PREUPLOAD.cfg @@ -0,0 +1,4 @@ +[Hook Scripts] +checkstyle_hook = ${REPO_ROOT}/prebuilts/checkstyle/checkstyle.py --sha ${PREUPLOAD_COMMIT} + +ktlint_hook = ${REPO_ROOT}/prebuilts/ktlint/ktlint.py -f ${PREUPLOAD_FILES} From 99fcd0bbf86de453915437b833b1fb1f604d09e9 Mon Sep 17 00:00:00 2001 From: Lorenzo Colitti Date: Fri, 27 Nov 2020 18:06:29 +0900 Subject: [PATCH 3/3] Add OWNERS for packages/modules/Connectivity. Specify the owners here instead of including them from other places (e.g., frameworks/base, NetworkStack) because we hope that this project will eventually contain all the code. Test: none Change-Id: I82811a9758480f16654145c4d55ef784be09de2b --- OWNERS | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 OWNERS diff --git a/OWNERS b/OWNERS new file mode 100644 index 0000000000..0e1e65df81 --- /dev/null +++ b/OWNERS @@ -0,0 +1,6 @@ +codewiz@google.com +jchalard@google.com +junyulai@google.com +lorenzo@google.com +reminv@google.com +satk@google.com