Lint AOSP
Project description
lintaosp
Introduction
lintaosp is a lint worker of lintflow on AOSP written in Python.
Prerequisites
- Android lint >= 4.1
- Python >= 3.7
Run
- Local mode
git clone https://github.com/craftslab/lintaosp.git
cd lintaosp
pip install -Ur requirements.txt
python aosp.py --config-file="config.yml" --lint-project="project" --output-file="output.json"
- Service mode
git clone https://github.com/craftslab/lintaosp.git
cd lintaosp
pip install -Ur requirements.txt
python aosp.py --config-file="config.yml" --listen-url="127.0.0.1:9090"
Docker
- Local mode
git clone https://github.com/craftslab/lintaosp.git
cd lintaosp
docker build --no-cache -f Dockerfile -t craftslab/lintaosp:latest .
docker run -it -v /tmp:/tmp craftslab/lintaosp:latest ./lintaosp --config-file="config.yml" --lint-project="/tmp/project" --output-file="/tmp/output.json"
- Service mode
git clone https://github.com/craftslab/lintaosp.git
cd lintaosp
docker build --no-cache -f Dockerfile -t craftslab/lintaosp:latest .
docker run -it -p 9090:9090 craftslab/lintaosp:latest ./lintaosp --config-file="config.yml" --listen-url="127.0.0.1:9090"
Usage
usage: aosp.py [-h] --config-file CONFIG_FILE
[--lint-project LINT_PROJECT | --listen-url LISTEN_URL]
[--output-file OUTPUT_FILE] [-v]
Lint AOSP
optional arguments:
-h, --help show this help message and exit
--config-file CONFIG_FILE
config file (.yml)
--lint-project LINT_PROJECT
lint project (/path/to/project)
--listen-url LISTEN_URL
listen url (host:port)
--output-file OUTPUT_FILE
output file (.json|.txt|.xlsx)
-v, --version show program's version number and exit
Settings
lintaosp parameters can be set in the directory config.
An example of configuration in config.yml:
apiVersion: v1
kind: worker
metadata:
name: lintaosp
spec:
sdk:
- Correctness
- Correctness:Messages
- Security
- Compliance
- Performance
- Performance:Application Size
- Usability:Typography
- Usability:Icons
- Usability
- Productivity
- Accessibility
- Internationalization
- Internationalization:Bidirectional Text
Design
Errorformat
- Error type
E: Error
I: Information
W: Warning
- JSON format
{
"file": "name",
"line": 1,
"type": "Error",
"details": "text"
}
- Text format
{file}:{line}:{type}:{details}
License
Project License can be found here.
Reference
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lintaosp-1.1.0.tar.gz
(15.7 kB
view details)
Built Distribution
File details
Details for the file lintaosp-1.1.0.tar.gz
.
File metadata
- Download URL: lintaosp-1.1.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3c7604dd2ed17d221044223ed1df03111e813d48be19d8b38c7e5b118aef4eb |
|
MD5 | e57747061228f88e1b00282b805d9c4f |
|
BLAKE2b-256 | 54d32fd4d4d98649f14b51c3ad11ffcb4b393cda9b5ebd6f0f6b7c9d5fcf9d41 |
File details
Details for the file lintaosp-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: lintaosp-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ac9c208e34958775ed127135ad6062283151977f6a2736adf98e772ce226e7a |
|
MD5 | e6c0a7f97db36e00cc622d8ccb7b92e1 |
|
BLAKE2b-256 | a387ddb6a0a84d6464bda11861122024f6a36edd91735c36a88cfa9f706d93a0 |