chore: vscode settings

This commit is contained in:
eneller
2025-04-11 17:32:31 +02:00
parent 6d8cd43202
commit 024bea93f8
3 changed files with 22 additions and 2 deletions

14
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"detachhead.basedpyright",
"charliermarsh.ruff",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"basedpyright.disableLanguageServices": true
}

View File

@@ -1,13 +1,16 @@
import requests
from bs4 import BeautifulSoup
from bs4 import ResultSet
from urllib.parse import urljoin
from urllib.request import urlparse
from tqdm import tqdm
from pyfzf.pyfzf import FzfPrompt
import click
import os, subprocess, shlex, logging, re
import os
import subprocess
import shlex
import logging
import re
import concurrent.futures
import importlib.resources as pkg_resources
from dataclasses import dataclass