Skip to content

Commit

Permalink
Add documentation, Makefile, and linting configuration
Browse files Browse the repository at this point in the history
Documentation and linting

More linting and documentation

usb_exceptions.py and the sign_*.py files pass linting checks

More linting and documentation

More linting and documentation

pylint: ignore too-few-public-methods

Spacing

Linting

Linting

Documentation

Linting

Create .readthedocs.yml
Create requirements.txt
Add documentation link to README
Update README.rst
Update README.rst
Update README.rst

Update .gitignore

Add call graphs

pylint and flake8 pass

Documentation

Documentation fixes

Add my Travis CI and Coveralls badges (#2)

Add some tables of contents to the documentation

Add linting to CI (#3)

* Add linting to CI

* Install flake8 and pylint

Hide the original repo's badges (for now) (#4)

Finish documentation skeletons for the sign_* files and usb_exceptions.py (#5)

Finish documentation skeletons for fastboot.py and fastboot_debug.py (#6)

Almost done with documentation skeletons

Finish documentation skeletons

Add contents to module docstrings

Working on documentation contents

Finish adding contents to module docstrings

Replace sections with rubrics

Document the sign_* modules and usb_exceptions.py

Remove whitespace

Fix typo

Add tests for the signers

Change 'ValueError' to more general 'Exception'

Added tests for the 'GetPublicKey()' methods

Add ADB keygen functionality (from @joeleong)

Fix sign_* tests

Add debugging code, work on documentation of filesync_protocol.py

Working on documentation

Remove debugging code

Fill in some documentation

Documentation and code formatting

Add some documentation

More documentation

Put command onto one line
  • Loading branch information
JeffLIrion committed Oct 18, 2019
1 parent f4e597f commit f80cb6c
Show file tree
Hide file tree
Showing 218 changed files with 14,007 additions and 810 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
ignore = E501,W504
19 changes: 15 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
*.pyc
*.DS_Store*

.cache/
.coverage
adb.egg-info/
.eggs/
.idea/
.tox/
adb.egg-info/
build/
dist/
htmlcov/

.coverage
/adb.zip
/fastboot.zip
.idea/
*.DS_Store*

# Documentation
docs/build
docs/html
docs/source/_static/*.dot

0 comments on commit f80cb6c

Please sign in to comment.