Skip to content

Commit

Permalink
✨ fix mime_types.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerteltier committed Jun 22, 2024
1 parent bae84a0 commit 0017bfb
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 116 deletions.
9 changes: 1 addition & 8 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,4 @@ extends:
- "plugin:deprecation/recommended"
reportUnusedDisableDirectives: true
parser: "@typescript-eslint/parser"
parserOptions:
EXPERIMENTAL_useProjectService: true
overrides:
- files: "*.js"
extends: "plugin:@typescript-eslint/disable-type-checked"
env:
es2022: true
node: true
parserOptions: {projectService: true}
6 changes: 3 additions & 3 deletions an_website/backdoor_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,9 +436,9 @@ def main() -> int | str: # noqa: C901
# pylint: disable=too-complex, too-many-branches
# pylint: disable=too-many-locals, too-many-statements
# pylint: disable=import-outside-toplevel, import-error, useless-suppression
from pyrepl.python_reader import ReaderConsole
from pyrepl.python_reader import (
main as _main, # type: ignore[import, unused-ignore]
from pyrepl.python_reader import ( # type: ignore[import, unused-ignore] # isort: skip # noqa: B950
ReaderConsole,
main as _main,
)

if "--help" in sys.argv or "-h" in sys.argv:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.19.36",
"@types/node": "^18.19.38",
"@typescript-eslint/eslint-plugin": "8.0.0-alpha.30",
"@typescript-eslint/parser": "8.0.0-alpha.30",
"browserslist": "^4.23.1",
Expand All @@ -34,7 +34,7 @@
"stylelint-prettier": "^5.0.0",
"ts-node": "github:isaacs/ts-node#isaacs/node-20-fix",
"type-fest": "^4.20.1",
"typescript": "5.5.1-rc",
"typescript": "~5.5.2",
"typescript-eslint": "8.0.0-alpha.30",
"typescript-eslint-language-service": "^5.0.5"
},
Expand Down
Loading

0 comments on commit 0017bfb

Please sign in to comment.