Skip to main content

Integrated tool for multi-language linters for command line tooland GitHub action

Project description

glob-linters

https://img.shields.io/pypi/v/glob_linters.svg Documentation Status Build and publish

glob-linters is an integtated tool to lint multiple programming and scripting languages and can be used as a normal command line in terminals as well as a workflow in GtiHub actions.

Features

  • Linting multiple languages.

  • Fully supporting configuration for each linter via configuration files or command options

Supported linters

Language

File extension

Linters

c++

.cpp

cpplint, clang-format

Python

.py

pylint, black, flake8, isort, mypy

Quick start

You can use glob-linters as a command line tool in a terminal or a workflow in GitHub action. Choose the appropriate one as a quick start.

Command line

To use as a command line tool, install the latest package by pip using the following command:

$ pip install glob-linters

After successful installation, you can use glob-linters as a command tool by issuing the following to see the command line options.

$ glob_linters -h

Then run glob_linters to lint all supported languages in the current directory, which will scan all corresponding files recursively and then perform linting. If you want to lint particular files, please visit the documentation for more advanced usages.

GitHub action

To use glob-linters in GitHub action, create a workflow file such as .github/workflows/glob-linters.yml in your own repository with the example contents:

name: Code linting

on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["main"]

jobs:
  glob-linters:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Linting
        uses: bowentan/glob-linters@v0.1.0rc5
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

You can control the workflow by creating a configuration file named as .github/glob-linters.ini and a sample configuration is given below:

[target]
target_dir = .
target_suffix = .py

[executable]
cpplint = cpplint
clang_format = clang-format
pylint = pylint
flake8 = flake8
black = black
isort = isort

[env]
debug = True

This configuration will enable debug mode with additional information when running and set the directory that will be searched for linting .py files to be the root of your repository.

For more details about usage, please refer to the documentation.

Contributing

If you are interested in this project and would like to make some contributions, please refer to the contributing for the contributing guide.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.0 (2022-10-10)

  • First pre-release version.

  • Include linters for .cpp and .py files.

0.1.0-alpha.7 (2022-09-14)

  • Clean the main dev branch

0.1.0-alpha.6 (2022-09-14)

  • Minor fixes

0.1.0-alpha.5 (2022-09-14)

  • Minor fixes

0.1.0-alpha.4 (2022-09-14)

  • Minor fixes

0.1.0-alpha.3 (2022-09-14)

  • Minor fixes

0.1.0-alpha.2 (2022-09-14)

  • Minor fixes

0.1.0-alpha.1 (2022-09-12)

  • First draft pre-release version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

glob_linters-0.1.0rc5.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

glob_linters-0.1.0rc5-py2.py3-none-any.whl (10.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file glob_linters-0.1.0rc5.tar.gz.

File metadata

  • Download URL: glob_linters-0.1.0rc5.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for glob_linters-0.1.0rc5.tar.gz
Algorithm Hash digest
SHA256 d8be3c14bcd9651c5d5b6b704dbadb3317e24b631f017220da23f7f080956973
MD5 336f38d1f6b7dc8379790455c78dedef
BLAKE2b-256 a6c40ae47b53f88b6d3346f216b2f9a8201a411e2f2449b8052568546cd4edb8

See more details on using hashes here.

Provenance

File details

Details for the file glob_linters-0.1.0rc5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for glob_linters-0.1.0rc5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2dbd3c64d9b497c9be1c1d859d2c5cc55911ed1bc026a5543dc1d399aade7ad1
MD5 0c000fe60f46575ffeed89491b042532
BLAKE2b-256 da8206e51e96c48a37d5234dc596166cc786c0feff5fc57d29e475a65282c041

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page