CoolFace
Apppublic

MojoSamurai/AutoGPT

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
.sourcery.yaml72 linesDownload Raw Back to root
1# ๐Ÿช„ This is your project's Sourcery configuration file.2 3# You can use it to get Sourcery working in the way you want, such as4# ignoring specific refactorings, skipping directories in your project,5# or writing custom rules.6 7# ๐Ÿ“š For a complete reference to this file, see the documentation at8# https://docs.sourcery.ai/Configuration/Project-Settings/9 10# This file was auto-generated by Sourcery on 2023-02-25 at 21:07.11 12version: '1'  # The schema version of this config file13 14ignore: # A list of paths or files which Sourcery will ignore.15- .git16- venv17- .venv18- build19- dist20- env21- .env22- .tox23 24rule_settings:25  enable:26  - default27  - gpsg28  disable: []  # A list of rule IDs Sourcery will never suggest.29  rule_types:30  - refactoring31  - suggestion32  - comment33  python_version: '3.10' # A string specifying the lowest Python version your project supports. Sourcery will not suggest refactorings requiring a higher Python version.34 35# rules:  # A list of custom rules Sourcery will include in its analysis.36# - id: no-print-statements37#   description: Do not use print statements in the test directory.38#   pattern: print(...)39#   language: python40#   replacement:41#   condition:42#   explanation:43#   paths:44#     include:45#     - test46#     exclude:47#     - conftest.py48#   tests: []49#   tags: []50 51# rule_tags: {} # Additional rule tags.52 53# metrics:54#   quality_threshold: 25.055 56# github:57#   labels: []58#   ignore_labels:59#   - sourcery-ignore60#   request_review: author61#   sourcery_branch: sourcery/{base_branch}62 63# clone_detection:64#   min_lines: 365#   min_duplicates: 266#   identical_clones_only: false67 68# proxy:69#   url:70#   ssl_certs_file:71#   no_ssl_verify: false72