Skip to content

Commit

Permalink
feat: add basedpyright formula
Browse files Browse the repository at this point in the history
  • Loading branch information
nikaro committed Jul 23, 2024
1 parent abc54e6 commit 60c05fc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Formula/basedpyright.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
require "language/node"

class Basedpyright < Formula
desc "Pyright fork with various type checking improvements, improved vscode support and pylance features built into the language server"

Check failure on line 4 in Formula/basedpyright.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-latest)

FormulaAudit/Desc: Description is too long. It should be less than 80 characters. The current length is 129.

Check failure on line 4 in Formula/basedpyright.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-latest)

Layout/LineLength: Line is too long. [138/118]

Check failure on line 4 in Formula/basedpyright.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

FormulaAudit/Desc: Description is too long. It should be less than 80 characters. The current length is 129.

Check failure on line 4 in Formula/basedpyright.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-latest)

Layout/LineLength: Line is too long. [138/118]
homepage "https://github.com/DetachHead/basedpyright"
url "https://github.com/DetachHead/basedpyright/archive/refs/tags/v1.14.0.tar.gz"
sha256 "6a8b2258ae012db021b3851838a7121c09369fe0526e9156dd96f36887cd6f8e"
license "MIT"

depends_on "node"

def install
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
bin.install_symlink Dir["#{libexec}/bin/*"]
end
end

0 comments on commit 60c05fc

Please sign in to comment.