-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 73caf98
Showing
35 changed files
with
5,621 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"ignorePaths": [ | ||
"**/node_modules/**", | ||
"**/vscode-extension/**", | ||
"**/.git/**", | ||
"**/.pnpm-lock.json", | ||
".vscode", | ||
"megalinter", | ||
"package-lock.json", | ||
"report" | ||
], | ||
"language": "en", | ||
"noConfigSearch": true, | ||
"words": ["megalinter", "oxsecurity"], | ||
"version": "0.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
plejd/tests/* | ||
__pycache__ | ||
.vscode | ||
build | ||
dist | ||
*.egg-info | ||
.venv | ||
megalinter-reports/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
# MegaLinter GitHub Action configuration file | ||
# More info at https://megalinter.io | ||
--- | ||
name: MegaLinter | ||
|
||
# Trigger mega-linter at every push. Action will also be visible from | ||
# Pull Requests to main | ||
on: | ||
# Comment this line to trigger action only on pull-requests | ||
# (not recommended if you don't pay for GH Actions) | ||
push: | ||
|
||
pull_request: | ||
branches: | ||
- main | ||
- master | ||
|
||
# Comment env block if you do not want to apply fixes | ||
env: | ||
# Apply linter fixes configuration | ||
# | ||
# When active, APPLY_FIXES must also be defined as environment variable | ||
# (in github/workflows/mega-linter.yml or other CI tool) | ||
APPLY_FIXES: all | ||
|
||
# Decide which event triggers application of fixes in a commit or a PR | ||
# (pull_request, push, all) | ||
APPLY_FIXES_EVENT: pull_request | ||
|
||
# If APPLY_FIXES is used, defines if the fixes are directly committed (commit) | ||
# or posted in a PR (pull_request) | ||
APPLY_FIXES_MODE: commit | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
megalinter: | ||
name: MegaLinter | ||
runs-on: ubuntu-latest | ||
|
||
# Give the default GITHUB_TOKEN write permission to commit and push, comment | ||
# issues, and post new Pull Requests; remove the ones you do not need | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
# Git Checkout | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} | ||
|
||
# If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to | ||
# improve performance | ||
fetch-depth: 0 | ||
|
||
# MegaLinter | ||
- name: MegaLinter | ||
|
||
# You can override MegaLinter flavor used to have faster performances | ||
# More info at https://megalinter.io/latest/flavors/ | ||
uses: oxsecurity/megalinter/flavors/python@v7 | ||
|
||
id: ml | ||
|
||
# All available variables are described in documentation | ||
# https://megalinter.io/latest/config-file/ | ||
env: | ||
# Validates all source when push on main, else just the git diff with | ||
# main. Override with true if you always want to lint all sources | ||
# | ||
# To validate the entire codebase, set to: | ||
# VALIDATE_ALL_CODEBASE: true | ||
# | ||
# To validate only diff with main, set to: | ||
# VALIDATE_ALL_CODEBASE: >- | ||
# ${{ | ||
# github.event_name == 'push' && | ||
# github.ref == 'refs/heads/main' | ||
# }} | ||
VALIDATE_ALL_CODEBASE: true | ||
|
||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# ADD YOUR CUSTOM ENV VARIABLES HERE TO OVERRIDE VALUES OF | ||
# .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY | ||
|
||
# Upload MegaLinter artifacts | ||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v3 | ||
if: success() || failure() | ||
with: | ||
name: MegaLinter reports | ||
path: | | ||
megalinter-reports | ||
mega-linter.log | ||
# Create pull request if applicable | ||
# (for now works only on PR from same repository, not from forks) | ||
- name: Create Pull Request with applied fixes | ||
uses: peter-evans/create-pull-request@v5 | ||
id: cpr | ||
if: >- | ||
steps.ml.outputs.has_updated_sources == 1 && | ||
( | ||
env.APPLY_FIXES_EVENT == 'all' || | ||
env.APPLY_FIXES_EVENT == github.event_name | ||
) && | ||
env.APPLY_FIXES_MODE == 'pull_request' && | ||
( | ||
github.event_name == 'push' || | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
) && | ||
!contains(github.event.head_commit.message, 'skip fix') | ||
with: | ||
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} | ||
commit-message: "[MegaLinter] Apply linters automatic fixes" | ||
title: "[MegaLinter] Apply linters automatic fixes" | ||
labels: bot | ||
|
||
- name: Create PR output | ||
if: >- | ||
steps.ml.outputs.has_updated_sources == 1 && | ||
( | ||
env.APPLY_FIXES_EVENT == 'all' || | ||
env.APPLY_FIXES_EVENT == github.event_name | ||
) && | ||
env.APPLY_FIXES_MODE == 'pull_request' && | ||
( | ||
github.event_name == 'push' || | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
) && | ||
!contains(github.event.head_commit.message, 'skip fix') | ||
run: | | ||
echo "PR Number - ${{ steps.cpr.outputs.pull-request-number }}" | ||
echo "PR URL - ${{ steps.cpr.outputs.pull-request-url }}" | ||
# Push new commit if applicable | ||
# (for now works only on PR from same repository, not from forks) | ||
- name: Prepare commit | ||
if: >- | ||
steps.ml.outputs.has_updated_sources == 1 && | ||
( | ||
env.APPLY_FIXES_EVENT == 'all' || | ||
env.APPLY_FIXES_EVENT == github.event_name | ||
) && | ||
env.APPLY_FIXES_MODE == 'commit' && | ||
github.ref != 'refs/heads/main' && | ||
( | ||
github.event_name == 'push' || | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
) && | ||
!contains(github.event.head_commit.message, 'skip fix') | ||
run: sudo chown -Rc $UID .git/ | ||
|
||
- name: Commit and push applied linter fixes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
if: >- | ||
steps.ml.outputs.has_updated_sources == 1 && | ||
( | ||
env.APPLY_FIXES_EVENT == 'all' || | ||
env.APPLY_FIXES_EVENT == github.event_name | ||
) && | ||
env.APPLY_FIXES_MODE == 'commit' && | ||
github.ref != 'refs/heads/main' && | ||
( | ||
github.event_name == 'push' || | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
) && | ||
!contains(github.event.head_commit.message, 'skip fix') | ||
with: | ||
branch: >- | ||
${{ | ||
github.event.pull_request.head.ref || | ||
github.head_ref || | ||
github.ref | ||
}} | ||
commit_message: "[MegaLinter] Apply linters fixes" | ||
commit_user_name: megalinter-bot | ||
commit_user_email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
# This workflow will install Python dependencies and run tests with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Python tests | ||
|
||
on: | ||
push: | ||
# Run against all branches | ||
# branches: [ "main" ] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
# Inspired by https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install poetry | ||
run: pipx install poetry | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
cache: "poetry" | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Run tests | ||
run: poetry run pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
settings.yaml | ||
*.pkl | ||
__pycache__ | ||
.vscode | ||
build | ||
dist | ||
*.egg-info | ||
.venv | ||
megalinter-reports/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[allowlist] | ||
# Plejd API key is not a secret, but detected so by gitleaks | ||
description = "Plejd API key" | ||
regexes = [ | ||
'''zHtVqXt8k4yFyk2QGmgp48D9xZr2G94xWYnF4dak''' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
find . -iname '*.pyc' -delete | ||
find . -iname '*.pyo' -delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"threshold": 0, | ||
"reporters": ["html", "markdown"], | ||
"ignore": [ | ||
"**/node_modules/**", | ||
"**/.git/**", | ||
"**/.rbenv/**", | ||
"**/.venv/**", | ||
"**/*cache*/**", | ||
"**/.github/**", | ||
"**/.idea/**", | ||
"**/report/**", | ||
"**/*.svg" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Configuration file for MegaLinter | ||
# | ||
# See all available variables at https://megalinter.io/latest/config-file/ and in | ||
# linters documentation | ||
|
||
# all, none, or list of linter keys | ||
APPLY_FIXES: all | ||
|
||
PYTHON_PYLINT_PRE_COMMANDS: | ||
# Help pylint understand pydantic models | ||
- command: pip install pylint-pydantic | ||
venv: pylint | ||
continue_if_failed: false | ||
|
||
PYTHON_PYLINT_ARGUMENTS: | ||
# Disable import checks because it needs all the Python dependencies installed in the linter | ||
# https://github.com/oxsecurity/megalinter/issues/2030 | ||
- "--disable=E0401,E0611" | ||
# Help pylint understand pydantic models | ||
- "--load-plugins=pylint_pydantic" | ||
PYTHON_FLAKE8_ARGUMENTS: | ||
- "--max-line-length=100" | ||
|
||
DISABLE_LINTERS: | ||
- SPELL_CSPELL | ||
- PYTHON_PYRIGHT # TODO this should not be disabled!! | ||
- PYTHON_MYPY # TODO this should not be disabled!! | ||
- REPOSITORY_CHECKOV # TODO this should not be disabled!! | ||
- COPYPASTE_JSCPD # TODO this should not be disabled!! | ||
|
||
SHOW_ELAPSED_TIME: true | ||
|
||
FILEIO_REPORTER: false | ||
|
||
PYTHON_BANDIT_FILTER_REGEX_EXCLUDE: test_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: clean-up-pyc-and-pyo-files | ||
name: Scrub all .pyc and .pyo files before committing | ||
entry: ./.hook-scripts/clean-up-pyc-and-pyo-files | ||
language: script | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-docstring-first | ||
- id: check-executables-have-shebangs | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-symlinks | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
|
||
- repo: https://github.com/psf/black | ||
rev: "23.1.0" | ||
hooks: | ||
- id: black | ||
args: [--line-length=100] | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: "6.0.0" | ||
hooks: | ||
- id: flake8 | ||
args: [--max-line-length=100] | ||
|
||
- repo: https://github.com/thlorenz/doctoc | ||
rev: v2.2.0 | ||
hooks: | ||
- id: doctoc | ||
|
||
- repo: https://github.com/python-poetry/poetry | ||
rev: "1.4.1" | ||
hooks: | ||
- id: poetry-check | ||
- id: poetry-lock |
Oops, something went wrong.