Increase Python code quality with pre-commit

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ย. 2024

ความคิดเห็น • 16

  • @ianeyre3590
    @ianeyre3590 9 หลายเดือนก่อน +1

    Great video. Thanks.

    • @Pybites
      @Pybites  9 หลายเดือนก่อน

      Thanks, pre-commit is a game changer.
      Any other videos that would be helpful?

  • @18Maxim18
    @18Maxim18 2 ปีที่แล้ว +1

    Nice, I use pylint + sonarqube for this check before commit

    • @Pybites
      @Pybites  2 ปีที่แล้ว

      Nice, have not heard about sonarqube, what does it do?

    • @18Maxim18
      @18Maxim18 2 ปีที่แล้ว +1

      @@Pybites make code analysis, checking code dublication, made some security scanning and post recommendation with examples how better to write code. Also it good to use as pycharm extension or as oncommit Jenkins job.

    • @Pybites
      @Pybites  2 ปีที่แล้ว

      @@18Maxim18 nice!

  • @davidjnevin
    @davidjnevin 2 ปีที่แล้ว +1

    Nice! Another step less to worry about. Is there an advantage to this over running these scripts on file save?

    • @Pybites
      @Pybites  2 ปีที่แล้ว +1

      The advantage I see is that if you run it on every save it might slow you down.
      I run pyflakes (via Vim) upon save to just check syntax. This speeds things up for me (and is not cumbersome).
      Running pre-commit with all bells and whistles usually takes a bit longer so only running it on commit is a good balance.
      HTH
      Bob

  • @sherryab3964
    @sherryab3964 ปีที่แล้ว +1

    Super Helpful!

    • @Pybites
      @Pybites  ปีที่แล้ว

      Thanks :)

  • @kevon217
    @kevon217 ปีที่แล้ว +1

    Very useful, thanks!

    • @Pybites
      @Pybites  ปีที่แล้ว

      Nice to hear, thanks

  • @vinodkumar-rc4vm
    @vinodkumar-rc4vm ปีที่แล้ว +1

    I have a small question if we don't maintain the releases and tags ,How we can implement the same?

    • @Pybites
      @Pybites  ปีที่แล้ว

      How do you mean?

  • @ricardomarques5861
    @ricardomarques5861 2 ปีที่แล้ว +1

    thanks man!

    • @Pybites
      @Pybites  2 ปีที่แล้ว

      Yw, pre-commit is super useful, added it to yet another project the other day.