
GitHub
GitLab
BitBucket
VS Code
Git
Treehouse
Pantheon
CodePen
pre-commit by Yelp
EditorConfig
Python Poetry
mypy
Semgrep
flake8
Gitleaks
GitHub Actions
GitHub
pre-commit by YelpNo pre-commit by Yelp videos yet. You could help us improve this page by suggesting one.
Based on our record, GitHub seems to be a lot more popular than pre-commit by Yelp. While we know about 2466 links to GitHub, we've tracked only 171 mentions of pre-commit by Yelp. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
// ==UserScript== // @name GitHub -> Obsidian Task // @namespace obsidian // @version 1.0 // @match https://github.com/*/*/issues/* // @match https://github.com/*/*/pull/* // @grant GM_setClipboard // ==/UserScript== (function () { 'use strict'; function getTitle() { return document.querySelector("bdi")?.textContent.trim(); } function copyTask() { ... - Source: dev.to / 2 days ago
Import requests From bs4 import BeautifulSoup From datetime import datetime Def fetch_github_trending(): url = "https://github.com/trending?since=daily" response = requests.get(url) soup = BeautifulSoup(response.text, 'html.parser') repos = [] for article in soup.select('article.Box-row'): repo_link = article.select_one('h2 a')['href'] stars_today =... - Source: dev.to / 3 days ago
Git clone https://github.com//.git /opt/app Cd /opt/app Docker build -t app . Docker run -d --name app --restart unless-stopped -p 8080:8080 app. - Source: dev.to / 7 days ago
The core of the ecosystem is the official open-source server hosted on GitHub. It is written in TypeScript and implements the full MCP specification. - Source: dev.to / 11 days ago
This is why the gate needs a trace it can trust, and why AgentLens is the other half of this workflow. agent-eval scores and gates the output; AgentLens captures the trace of how the agent got there โ every model call and tool step, the resolved inputs (not the templated ones), the raw outputs. That trace is exactly the unforgeable, agent-didn't-author substrate that Tier 1+2 need to score against. Without it,... - Source: dev.to / 12 days ago
Representative tools: Gitleaks and TruffleHog are the open-source workhorses. Run both through the pre-commit framework so secrets get caught before they ever hit the remote. - Source: dev.to / about 1 month ago
Flexible: It works seamlessly with both pre-commit and prek. - Source: dev.to / 22 days ago
# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks Repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: end-of-file-fixer - id: check-merge-conflict - id: trailing-whitespace args: [--markdown-linebreak-ext=md] - id: check-shebang-scripts-are-executable # YAML - id:... - Source: dev.to / about 2 months ago
Then wire it into a pre-commit hook. If you're using the pre-commit framework (https://pre-commit.com/), drop this into .pre-commit-config.yaml:. - Source: dev.to / about 2 months ago
> My approach is to utilize https://pre-commit.com/ to have all checks available to run locally during commit That works fine for some things, but it doesn't work for building and testing on other platforms. For example, if I am running on linux, pre-commit won't be able to check that my changes also work on Mac and Windows. - Source: Hacker News / 2 months ago
GitLab - Create, review and deploy code together with GitLab open source git repo management software | GitLab
EditorConfig - EditorConfig is a file format and collection of text editor plugins for maintaining consistent coding styles between different editors and IDEs.
BitBucket - Bitbucket is a free code hosting site for Mercurial and Git. Manage your development with a hosted wiki, issue tracker and source code.
Python Poetry - Python packaging and dependency manager.
VS Code - Build and debug modern web and cloud applications, by Microsoft
mypy - Mypy is an experimental optional static type checker for Python that aims to combine the benefits of dynamic (or "duck") typing and static typing.