소스 검색

initial commit

Jelmer Vernooij 2 년 전
커밋
31351ff8b4
5개의 변경된 파일50개의 추가작업 그리고 0개의 파일을 삭제
  1. 21 0
      candidates.yaml
  2. 7 0
      codespell.yaml
  3. 7 0
      isort.yaml
  4. 6 0
      pyupgrade.yaml
  5. 9 0
      teyit.yaml

+ 21 - 0
candidates.yaml

@@ -0,0 +1,21 @@
+- url: https://github.com/jelmer/silver-platter
+- url: https://github.com/jelmer/dulwich
+- url: lp:brz
+- url: lp:brz/3.3
+- url: lp:brz-debian
+- url: https://github.com/jelmer/disperse
+- url: https://github.com/jelmer/prometheus-xmpp-alerts
+- url: https://github.com/jelmer/xandikos
+- url: https://github.com/jelmer/python-fastimport
+- url: https://github.com/jelmer/setuptools-protobuf
+- url: https://github.com/breezy-team/fastbencode
+- url: https://github.com/breezy-team/patiencediff
+- url: https://github.com/breezy-team/merge3
+- url: https://github.com/breezy-team/setuptools-gettext
+- url: https://github.com/testing-cabal/subunit
+  default-mode: propose
+- url: https://salsa.debian.org/jelmer/janitor.debian.net
+- url: https://salsa.debian.org/jelmer/debmutate
+- url: https://salsa.debian.org/jelmer/lintian-brush
+- url: https://github.com/jelmer/janitor
+- url: lp:loggerhead

+ 7 - 0
codespell.yaml

@@ -0,0 +1,7 @@
+---
+name: codespell
+command: 'codespell -ws -i0 -q15 -S "*.po,*.pot"; exit 0'
+mode: propose
+merge-request:
+  commit-message: Fix spelling errors in code
+  description: Fix spelling errors in code

+ 7 - 0
isort.yaml

@@ -0,0 +1,7 @@
+---
+name: isort
+command: 'isort --om -q .; echo "Sort Python import definitions with isort"'
+mode: propose
+merge-request:
+  commit-message: Sort Python import definitions
+  description: Sort Python import definitions

+ 6 - 0
pyupgrade.yaml

@@ -0,0 +1,6 @@
+---
+name: pyupgrade
+command: 'pyupgrade --exit-zero-even-if-changed $(find -name "test_*.py")'
+mode: propose
+merge-request:
+  commit-message: Upgrade Python code to a modern version

+ 9 - 0
teyit.yaml

@@ -0,0 +1,9 @@
+---
+name: teyit
+command: |-
+  echo Improve unittest calls
+  echo
+  teyit $(find -name "test_*.py")
+mode: propose
+merge-request:
+  commit-message: Improve unittest calls