This commit is contained in:
Benjamin Toby 2026-02-01 07:01:53 +01:00
parent 3c44330ddc
commit ac8a159ca9
53 changed files with 135 additions and 25402 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,7 +0,0 @@
const server = Bun.serve({
async fetch(req) {
return new Response("Welcome to Bun! Courtesy of Moduletrace.");
},
});
console.log(`Bun Server running on port ${server.port} ...`);

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote://localhost:8080/root/workspace/test.ts","entries":[{"id":"Qyhq.ts","timestamp":1738999043143}]}

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote://localhost:8080/root/workspace/index.ts","entries":[{"id":"zvZE.ts","timestamp":1738999062083}]}

View File

@ -1,7 +0,0 @@
const server = Bun.serve({
async fetch(req) {
return new Response("Welcome to Bun! Courtesy of Moduletrace.");
},
});
console.log(`Bun Server running on port ${server.port} ...`);

View File

@ -1,7 +0,0 @@
{
"workbench.colorTheme": "Obsidian Dark",
"editor.formatOnSave": true,
"prettier.tabWidth": 4,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.autoSave": "off"
}

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote:/root/.local/share/code-server/User/settings.json","entries":[{"id":"pwWg.json","timestamp":1738998568039},{"id":"YppF.json","timestamp":1738999005738}]}

View File

@ -1,3 +0,0 @@
{
"workbench.colorTheme": "Obsidian Dark"
}

View File

@ -1,2 +0,0 @@
bind-addr: 127.0.0.1:8080
auth: none

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote://localhost:8080/root/.config/code-server/config.yaml","entries":[{"id":"HyKD.yaml","timestamp":1738998519741}]}

View File

@ -1,148 +0,0 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return ;;
esac
GREEN="$(tput setaf 2)"
BLUE="$(tput setaf 4)"
WHITE="$(tput setaf 7)"
BOLD="$(tput bold)"
RESET="$(tput sgr0)"
function parse_git_branch() {
git_branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
if [ -z "$git_branch" ]; then
echo ""
else
echo " ${WHITE}${BOLD}$git_branch${RESET}"
fi
}
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
export HISTFILE=~/.bash_history
export HISTSIZE=100
export HISTFILESIZE=200
# Append to the history file rather than overwriting it
shopt -s histappend
# Ignore duplicate or specific commands in history
export HISTCONTROL=ignoredups:erasedups # Avoid duplicate entries
export HISTIGNORE="ls:bg:fg:history" # Ignore specific commands
if [ ! -f "$HISTFILE" ]; then
touch "$HISTFILE"
chmod 600 "$HISTFILE"
fi
# Save history immediately after every command
PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color | *-256color) color_prompt=yes ;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]$(parse_git_branch) $ '
else
PS1='${debian_chroot:+($debian_chroot)}\u:\w$(parse_git_branch) $ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm* | rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u: \w\a\]$PS1"
;;
*) ;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
alias ll='ls -laF'
alias code='/root/code-server/bin/code-server'
#alias la='ls -A'
#alias l='ls -CF'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote://localhost:8080/root/.bashrc","entries":[{"id":"S5jN","timestamp":1738998430358}]}

View File

@ -1,15 +0,0 @@
{
"name": "test",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"scripts": {
"dev": "bun --watch index.ts",
"start": "bun index.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote://localhost:8080/root/workspace/package.json","entries":[{"id":"28Tf.json","timestamp":1738999130593},{"id":"odIl.json","timestamp":1738999257295}]}

View File

@ -1,15 +0,0 @@
{
"name": "test",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"scripts": {
"dev": "bun --watch index.ts",
"start": "bun index.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}

View File

@ -1,57 +0,0 @@
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.copySelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused"
},
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+v",
"command": "-workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+alt+p",
"command": "workbench.action.pinEditor",
"when": "!activeEditorIsPinned"
},
{
"key": "ctrl+k shift+enter",
"command": "-workbench.action.pinEditor",
"when": "!activeEditorIsPinned"
},
{
"key": "ctrl+shift+alt+s",
"command": "workbench.action.files.saveFiles"
},
{
"key": "shift+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
}
]

View File

@ -1 +0,0 @@
{"version":1,"resource":"vscode-remote:/root/.local/share/code-server/User/keybindings.json","entries":[{"id":"HhNL.json","timestamp":1738998940281},{"id":"fPo4.json","timestamp":1738999400874}]}

View File

@ -1,67 +0,0 @@
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.copySelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused"
},
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+v",
"command": "-workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+alt+p",
"command": "workbench.action.pinEditor",
"when": "!activeEditorIsPinned"
},
{
"key": "ctrl+k shift+enter",
"command": "-workbench.action.pinEditor",
"when": "!activeEditorIsPinned"
},
{
"key": "ctrl+shift+alt+s",
"command": "workbench.action.files.saveFiles"
},
{
"key": "shift+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+delete",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
}
]

View File

@ -1 +0,0 @@
{"content":{"settings":"{}","tasks":"{}","launch":"{}"}}

View File

@ -1,126 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/semantic-release.json",
"definitions": {
"branch-object": {
"type": "object",
"additionalProperties": false,
"required": ["name"],
"properties": {
"name": {
"type": "string"
},
"channel": {
"type": "string"
},
"range": {
"type": "string"
},
"prerelease": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
}
}
}
},
"properties": {
"extends": {
"description": "List of modules or file paths containing a shareable configuration. If multiple shareable configurations are set, they will be imported in the order defined with each configuration option taking precedence over the options defined in a previous shareable configuration",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"branches": {
"description": "The branches on which releases should happen.",
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/branch-object"
},
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/branch-object"
}
]
}
}
],
"default": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"repositoryUrl": {
"type": "string",
"description": "The git repository URL"
},
"tagFormat": {
"type": "string",
"description": "The Git tag format used by semantic-release to identify releases. The tag name is generated with Lodash template and will be compiled with the version variable.",
"default": "v${version}"
},
"plugins": {
"type": "array",
"description": "Define the list of plugins to use. Plugins will run in series, in the order defined",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "array"
}
]
},
"default": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dryRun": {
"type": "boolean",
"description": "The objective of the dry-run mode is to get a preview of the pending release. Dry-run mode skips the following steps: prepare, publish, success and fail. In addition to this it prints the next version and release notes to the console"
},
"ci": {
"type": "boolean",
"description": "Set to false to skip Continuous Integration environment verifications. This allows for making releases from a local machine",
"default": true
}
},
"title": "semantic-release Schema",
"type": "object"
}

View File

@ -1,396 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/prettierrc.json",
"definitions": {
"optionsDefinition": {
"type": "object",
"properties": {
"arrowParens": {
"description": "Include parentheses around a sole arrow function parameter.",
"default": "always",
"oneOf": [
{
"enum": ["always"],
"description": "Always include parens. Example: `(x) => x`"
},
{
"enum": ["avoid"],
"description": "Omit parens when possible. Example: `x => x`"
}
]
},
"bracketSameLine": {
"description": "Put > of opening tags on the last line instead of on a new line.",
"default": false,
"type": "boolean"
},
"bracketSpacing": {
"description": "Print spaces between brackets.",
"default": true,
"type": "boolean"
},
"cursorOffset": {
"description": "Print (to stderr) where a cursor at the given position would move to after formatting.",
"default": -1,
"type": "integer"
},
"embeddedLanguageFormatting": {
"description": "Control how Prettier formats quoted code embedded in the file.",
"default": "auto",
"oneOf": [
{
"enum": ["auto"],
"description": "Format embedded code if Prettier can automatically identify it."
},
{
"enum": ["off"],
"description": "Never automatically format embedded code."
}
]
},
"endOfLine": {
"description": "Which end of line characters to apply.",
"default": "lf",
"oneOf": [
{
"enum": ["lf"],
"description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos"
},
{
"enum": ["crlf"],
"description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows"
},
{
"enum": ["cr"],
"description": "Carriage Return character only (\\r), used very rarely"
},
{
"enum": ["auto"],
"description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)"
}
]
},
"experimentalTernaries": {
"description": "Use curious ternaries, with the question mark after the condition.",
"default": false,
"type": "boolean"
},
"filepath": {
"description": "Specify the input filepath. This will be used to do parser inference.",
"type": "string"
},
"htmlWhitespaceSensitivity": {
"description": "How to handle whitespaces in HTML.",
"default": "css",
"oneOf": [
{
"enum": ["css"],
"description": "Respect the default value of CSS display property."
},
{
"enum": ["strict"],
"description": "Whitespaces are considered sensitive."
},
{
"enum": ["ignore"],
"description": "Whitespaces are considered insensitive."
}
]
},
"insertPragma": {
"description": "Insert @format pragma into file's first docblock comment.",
"default": false,
"type": "boolean"
},
"jsxSingleQuote": {
"description": "Use single quotes in JSX.",
"default": false,
"type": "boolean"
},
"parser": {
"description": "Which parser to use.",
"anyOf": [
{
"enum": ["flow"],
"description": "Flow"
},
{
"enum": ["babel"],
"description": "JavaScript"
},
{
"enum": ["babel-flow"],
"description": "Flow"
},
{
"enum": ["babel-ts"],
"description": "TypeScript"
},
{
"enum": ["typescript"],
"description": "TypeScript"
},
{
"enum": ["acorn"],
"description": "JavaScript"
},
{
"enum": ["espree"],
"description": "JavaScript"
},
{
"enum": ["meriyah"],
"description": "JavaScript"
},
{
"enum": ["css"],
"description": "CSS"
},
{
"enum": ["less"],
"description": "Less"
},
{
"enum": ["scss"],
"description": "SCSS"
},
{
"enum": ["json"],
"description": "JSON"
},
{
"enum": ["json5"],
"description": "JSON5"
},
{
"enum": ["jsonc"],
"description": "JSON with Comments"
},
{
"enum": ["json-stringify"],
"description": "JSON.stringify"
},
{
"enum": ["graphql"],
"description": "GraphQL"
},
{
"enum": ["markdown"],
"description": "Markdown"
},
{
"enum": ["mdx"],
"description": "MDX"
},
{
"enum": ["vue"],
"description": "Vue"
},
{
"enum": ["yaml"],
"description": "YAML"
},
{
"enum": ["glimmer"],
"description": "Ember / Handlebars"
},
{
"enum": ["html"],
"description": "HTML"
},
{
"enum": ["angular"],
"description": "Angular"
},
{
"enum": ["lwc"],
"description": "Lightning Web Components"
},
{
"type": "string",
"description": "Custom parser"
}
]
},
"plugins": {
"description": "Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"printWidth": {
"description": "The line length where Prettier will try wrap.",
"default": 80,
"type": "integer"
},
"proseWrap": {
"description": "How to wrap prose.",
"default": "preserve",
"oneOf": [
{
"enum": ["always"],
"description": "Wrap prose if it exceeds the print width."
},
{
"enum": ["never"],
"description": "Do not wrap prose."
},
{
"enum": ["preserve"],
"description": "Wrap prose as-is."
}
]
},
"quoteProps": {
"description": "Change when properties in objects are quoted.",
"default": "as-needed",
"oneOf": [
{
"enum": ["as-needed"],
"description": "Only add quotes around object properties where required."
},
{
"enum": ["consistent"],
"description": "If at least one property in an object requires quotes, quote all properties."
},
{
"enum": ["preserve"],
"description": "Respect the input use of quotes in object properties."
}
]
},
"rangeEnd": {
"description": "Format code ending at a given character offset (exclusive).\nThe range will extend forwards to the end of the selected statement.",
"default": null,
"type": "integer"
},
"rangeStart": {
"description": "Format code starting at a given character offset.\nThe range will extend backwards to the start of the first line containing the selected statement.",
"default": 0,
"type": "integer"
},
"requirePragma": {
"description": "Require either '@prettier' or '@format' to be present in the file's first docblock comment\nin order for it to be formatted.",
"default": false,
"type": "boolean"
},
"semi": {
"description": "Print semicolons.",
"default": true,
"type": "boolean"
},
"singleAttributePerLine": {
"description": "Enforce single attribute per line in HTML, Vue and JSX.",
"default": false,
"type": "boolean"
},
"singleQuote": {
"description": "Use single quotes instead of double quotes.",
"default": false,
"type": "boolean"
},
"tabWidth": {
"description": "Number of spaces per indentation level.",
"default": 2,
"type": "integer"
},
"trailingComma": {
"description": "Print trailing commas wherever possible when multi-line.",
"default": "all",
"oneOf": [
{
"enum": ["all"],
"description": "Trailing commas wherever possible (including function arguments)."
},
{
"enum": ["es5"],
"description": "Trailing commas where valid in ES5 (objects, arrays, etc.)"
},
{
"enum": ["none"],
"description": "No trailing commas."
}
]
},
"useTabs": {
"description": "Indent with tabs instead of spaces.",
"default": false,
"type": "boolean"
},
"vueIndentScriptAndStyle": {
"description": "Indent script and style tags in Vue files.",
"default": false,
"type": "boolean"
}
}
},
"overridesDefinition": {
"type": "object",
"properties": {
"overrides": {
"type": "array",
"description": "Provide a list of patterns to override prettier configuration.",
"items": {
"type": "object",
"required": ["files"],
"properties": {
"files": {
"description": "Include these files in this override.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"excludeFiles": {
"description": "Exclude these files from this override.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"options": {
"$ref": "#/definitions/optionsDefinition",
"type": "object",
"description": "The options to apply for this override."
}
},
"additionalProperties": false
}
}
}
}
},
"oneOf": [
{
"type": "object",
"allOf": [
{
"$ref": "#/definitions/optionsDefinition"
},
{
"$ref": "#/definitions/overridesDefinition"
}
]
},
{
"type": "string"
}
],
"title": "Schema for .prettierrc"
}

View File

@ -1,405 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/jscpd.json",
"additionalProperties": false,
"definitions": {
"colorPreset": {
"enum": [
"green",
"blue",
"red",
"yellow",
"orange",
"purple",
"pink",
"grey",
"gray",
"cyan",
"black"
]
},
"colorHex": {
"type": "string",
"pattern": "([0-9a-fA-F]{3}){1,2}"
},
"color": {
"oneOf": [
{
"$ref": "#/definitions/colorPreset"
},
{
"$ref": "#/definitions/colorHex"
}
]
},
"format": {
"enum": [
"abap",
"actionscript",
"ada",
"apacheconf",
"apl",
"applescript",
"arduino",
"arff",
"asciidoc",
"asm6502",
"aspnet",
"autohotkey",
"autoit",
"bash",
"basic",
"batch",
"bison",
"brainfuck",
"bro",
"c",
"c-header",
"clike",
"clojure",
"coffeescript",
"comments",
"cpp",
"cpp-header",
"crystal",
"csharp",
"csp",
"css-extras",
"css",
"d",
"dart",
"diff",
"django",
"docker",
"eiffel",
"elixir",
"elm",
"erb",
"erlang",
"flow",
"fortran",
"fsharp",
"gedcom",
"gherkin",
"git",
"glsl",
"go",
"graphql",
"groovy",
"haml",
"handlebars",
"haskell",
"haxe",
"hpkp",
"hsts",
"http",
"ichigojam",
"icon",
"inform7",
"ini",
"io",
"j",
"java",
"javascript",
"jolie",
"json",
"jsx",
"julia",
"keymap",
"kotlin",
"latex",
"less",
"liquid",
"lisp",
"livescript",
"lolcode",
"lua",
"makefile",
"markdown",
"markup",
"matlab",
"mel",
"mizar",
"monkey",
"n4js",
"nasm",
"nginx",
"nim",
"nix",
"nsis",
"objectivec",
"ocaml",
"opencl",
"oz",
"parigp",
"pascal",
"perl",
"php",
"plsql",
"powershell",
"processing",
"prolog",
"properties",
"protobuf",
"pug",
"puppet",
"pure",
"python",
"q",
"qore",
"r",
"reason",
"renpy",
"rest",
"rip",
"roboconf",
"ruby",
"rust",
"sas",
"sass",
"scala",
"scheme",
"scss",
"smalltalk",
"smarty",
"soy",
"sql",
"stylus",
"swift",
"tap",
"tcl",
"textile",
"tsx",
"tt2",
"twig",
"typescript",
"vbnet",
"velocity",
"verilog",
"vhdl",
"vim",
"visual-basic",
"wasm",
"url",
"wiki",
"xeora",
"xojo",
"xquery",
"yaml"
]
}
},
"properties": {
"minLines": {
"type": "integer",
"default": 5,
"description": "minimum size of code block in lines to check for duplication"
},
"maxLines": {
"type": "integer",
"default": 1000,
"description": "maximum size of source file in lines to check for duplication"
},
"maxSize": {
"anyOf": [
{
"type": "string",
"pattern": "^\\+?[0-9]+(\\.[0-9]+)? *[kKmMgGtTpP][bB]$"
},
{
"type": "integer"
}
],
"default": "100kb",
"description": "maximum size of source file in bytes to check for duplication (e.g.,: 1kb, 1mb, 120kb)"
},
"minTokens": {
"type": "integer",
"default": 50,
"description": "minimum size of code block in tokens to check for duplication"
},
"threshold": {
"type": "number",
"description": "maximum allowed duplicate lines expressed as a percentage; exit with error and exit code 1 when threshold exceeded"
},
"formatsExts": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
},
"default": {},
"description": "custom mapping from formats to file extensions (default: https://github.com/kucherenko/jscpd/blob/master/packages/tokenizer/src/formats.ts); see https://github.com/kucherenko/jscpd/blob/master/supported_formats.md"
},
"output": {
"type": "string",
"default": "./report",
"description": "path to directory for non-console reports"
},
"path": {
"type": "array",
"items": {
"type": "string"
},
"description": "paths that should be included in duplicate detection (default: [process.cwd()])"
},
"pattern": {
"type": "string",
"default": "**/*",
"description": "glob pattern for files that should be included in duplicate detection (e.g., **/*.txt); only used to filter directories configured via path option"
},
"ignorePattern": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "ignore code blocks matching these regular expressions"
},
"mode": {
"enum": ["mild", "strict", "weak"],
"default": "mild",
"description": "mode of detection quality; see https://github.com/kucherenko/jscpd/blob/master/packages/jscpd/README.md#mode"
},
"ignore": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "glob pattern for files that should be excluded from duplicate detection"
},
"format": {
"type": "array",
"items": {
"$ref": "#/definitions/format"
},
"description": "list of formats for which to detect duplication (default: all); see https://github.com/kucherenko/jscpd/blob/master/supported_formats.md"
},
"store": {
"enum": ["leveldb", "redis"],
"description": "store used to collect information about code (default: in-memory store); install @jscpd/leveldb-store and use leveldb for big repositories"
},
"reporters": {
"type": "array",
"items": {
"enum": [
"xml",
"json",
"csv",
"markdown",
"consoleFull",
"html",
"console",
"silent",
"threshold",
"xcode"
]
},
"default": ["console"],
"description": "a list of reporters to use to output information about duplication; see https://github.com/kucherenko/jscpd/blob/master/packages/jscpd/README.md#reporters"
},
"blame": {
"type": "boolean",
"default": false,
"description": "get information about authors and dates of duplicated blocks from Git"
},
"silent": {
"type": "boolean",
"default": false,
"description": "do not write duplicate detection progress and result to console"
},
"verbose": {
"type": "boolean",
"default": false,
"description": "show full information during duplicate detection"
},
"absolute": {
"type": "boolean",
"default": false,
"description": "use absolute paths in reports"
},
"noSymlinks": {
"type": "boolean",
"default": false,
"description": "do not follow symlinks"
},
"skipLocal": {
"type": "boolean",
"default": false,
"description": "skip duplicates within folders; just detect cross-folder duplicates"
},
"ignoreCase": {
"type": "boolean",
"default": false,
"description": "ignore case of symbols in code (experimental)"
},
"gitignore": {
"type": "boolean",
"default": false,
"description": "ignore all files from .gitignore file"
},
"reportersOptions": {
"type": "object",
"default": {},
"additionalProperties": false,
"properties": {
"badge": {
"type": "object",
"additionalProperties": false,
"properties": {
"path": {
"type": "string",
"description": "output path for duplication level badge (default: path.join(output, 'jscpd-badge.svg'))"
},
"label": {
"type": "string",
"default": "Copy/Paste",
"description": "badge subject text (URL-encoding needed for spaces or special characters)"
},
"labelColor": {
"$ref": "#/definitions/color",
"default": "555",
"description": "badge label color (name or RGB code without #); see https://github.com/badgen/badgen/blob/master/src/color-presets.ts"
},
"status": {
"type": "string",
"description": "badge value text (URL-encoding needed for spaces or special characters, default: duplication %)"
},
"color": {
"$ref": "#/definitions/color",
"description": "badge color (name or RGB code without #, default: green if beneath threshold, red if above threshold, grey if threshold not set); see https://github.com/badgen/badgen/blob/master/src/color-presets.ts"
},
"style": {
"enum": ["flat", "classic"],
"default": "classic",
"description": "badge look: flat or classic"
},
"icon": {
"type": "string",
"description": "URL for icon to display in front of badge subject text (e.g., data:image/svg+xml;base64,...)"
},
"iconWidth": {
"type": "number",
"default": 13,
"description": "SVG width of icon to display in front of badge subject text; set this if icon is not square"
},
"scale": {
"type": "number",
"default": 1,
"description": "size of badge relative to default of 1"
}
}
}
}
},
"exitCode": {
"type": "integer",
"default": 0,
"description": "exit code to use when at least one duplicate code block is detected but threshold is not exceeded"
}
},
"type": "object"
}

View File

@ -1,167 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/ava.json",
"additionalProperties": false,
"definitions": {
"path": {
"type": "string",
"minLength": 1
},
"array-of-strings": {
"type": "array",
"items": {
"type": "string"
}
},
"array-of-paths": {
"type": "array",
"items": {
"$ref": "#/definitions/path"
}
}
},
"description": "Configuration Schema for the JavaScript test runner AVA",
"properties": {
"files": {
"$ref": "#/definitions/array-of-paths",
"description": "An array of glob patterns to select test files. Files with an underscore prefix are ignored. By default only selects files with `cjs`, `mjs` & `js` extensions, even if the pattern matches other files. Specify `extensions` to allow other file extensions"
},
"ignoredByWatcher": {
"$ref": "#/definitions/array-of-paths",
"description": "An array of glob patterns to match files that, even if changed, are ignored by the watcher"
},
"match": {
"$ref": "#/definitions/array-of-paths",
"description": "Not typically useful in the `package.json` configuration, but equivalent to specifying `--match` on the CLI"
},
"cache": {
"type": "boolean",
"default": true,
"description": "Defaults to `true` to cache compiled files under `node_modules/.cache/ava.` If `false`, files are cached in a temporary directory instead"
},
"concurrency": {
"type": "number",
"description": "Max number of test files running at the same time (default: CPU cores)"
},
"workerThreads": {
"type": "boolean",
"default": true,
"description": "Use worker threads to run tests (enabled by default). If `false`, tests will run in child processes"
},
"failFast": {
"type": "boolean",
"default": false,
"description": "Stop running further tests once a test fails"
},
"failWithoutAssertions": {
"type": "boolean",
"default": true,
"description": "If `false`, does not fail a test if it doesn't run assertions"
},
"environmentVariables": {
"title": "environment variables",
"type": "object",
"description": "Specifies environment variables to be made available to the tests. The environment variables defined here override the ones from `process.env`",
"additionalProperties": {
"type": "string"
}
},
"serial": {
"type": "boolean",
"default": false,
"description": "if `true`, prevents parallel execution of tests within a file"
},
"tap": {
"type": "boolean",
"default": false,
"description": "If `true`, enables the TAP reporter"
},
"verbose": {
"type": "boolean",
"default": false,
"description": "If `true`, enables verbose output (though currently non-verbose output is not supported)"
},
"snapshotDir": {
"$ref": "#/definitions/path",
"description": "Specifies a fixed location for storing snapshot files. Use this if your snapshots are ending up in the wrong location"
},
"extensions": {
"anyOf": [
{
"$ref": "#/definitions/array-of-strings"
},
{
"title": "extensions",
"type": "object",
"patternProperties": {
"^(c|m)?js$": {
"enum": [true]
}
},
"additionalProperties": {
"enum": ["commonjs", "module"]
}
}
],
"default": ["cjs", "mjs", "js"],
"description": "Extensions of test files. Setting this overrides the default `[\"cjs\", \"mjs\", \"js\"]` value, so make sure to include those extensions in the list. Experimentally you can configure how files are loaded"
},
"require": {
"$ref": "#/definitions/array-of-paths",
"description": "Extra modules to require before tests are run. Modules are required in the worker processes"
},
"timeout": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "string",
"pattern": "^(\\d+)(s|m)$"
}
],
"default": "10s",
"description": "Timeouts in AVA behave differently than in other test frameworks. AVA resets a timer after each test, forcing tests to quit if no new test results were received within the specified timeout. This can be used to handle stalled tests. See our timeout documentation for more options"
},
"nodeArguments": {
"$ref": "#/definitions/array-of-strings",
"description": "Configure Node.js arguments used to launch worker processes"
},
"utilizeParallelBuilds": {
"type": "boolean",
"default": true,
"description": "If `false`, disable parallel builds (default: `true`)"
},
"typescript": {
"title": "configuration",
"type": "object",
"description": "Configures @ava/typescript for projects that precompile TypeScript. Alternatively, you can use `ts-node` to do live testing without transpiling, in which case you shouldn't use the `typescript` property",
"properties": {
"extensions": {
"$ref": "#/definitions/array-of-paths",
"default": ["ts"],
"description": "You can configure AVA to recognize additional file extensions as TypeScript (e.g., `[\"ts\", \"tsx\"]` to add partial JSX support). Note that the preserve mode for JSX is not (yet) supported. See also AVA's `extensions` object"
},
"rewritePaths": {
"title": "paths",
"type": "object",
"description": "AVA searches your entire project for `*.js`, `*.cjs`, `*.mjs` and `*.ts` files (or other extensions you've configured). It will ignore such files found in the `rewritePaths` targets (e.g. `build/`). If you use more specific paths, for instance `build/main/`, you may need to change AVA's `files` configuration to ignore other directories. Paths are relative to your project directory",
"patternProperties": {
"/$": {
"type": "string",
"pattern": "/$"
}
}
},
"compile": {
"enum": [false, "tsc"],
"default": false,
"description": "If `false`, AVA will assume you have already compiled your project. If set to `'tsc'`, AVA will run the TypeScript compiler before running your tests. This can be inefficient when using AVA in watch mode"
}
}
}
},
"title": "AVA Config Schema",
"type": "object"
}

View File

@ -1,396 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/prettierrc.json",
"definitions": {
"optionsDefinition": {
"type": "object",
"properties": {
"arrowParens": {
"description": "Include parentheses around a sole arrow function parameter.",
"default": "always",
"oneOf": [
{
"enum": ["always"],
"description": "Always include parens. Example: `(x) => x`"
},
{
"enum": ["avoid"],
"description": "Omit parens when possible. Example: `x => x`"
}
]
},
"bracketSameLine": {
"description": "Put > of opening tags on the last line instead of on a new line.",
"default": false,
"type": "boolean"
},
"bracketSpacing": {
"description": "Print spaces between brackets.",
"default": true,
"type": "boolean"
},
"cursorOffset": {
"description": "Print (to stderr) where a cursor at the given position would move to after formatting.",
"default": -1,
"type": "integer"
},
"embeddedLanguageFormatting": {
"description": "Control how Prettier formats quoted code embedded in the file.",
"default": "auto",
"oneOf": [
{
"enum": ["auto"],
"description": "Format embedded code if Prettier can automatically identify it."
},
{
"enum": ["off"],
"description": "Never automatically format embedded code."
}
]
},
"endOfLine": {
"description": "Which end of line characters to apply.",
"default": "lf",
"oneOf": [
{
"enum": ["lf"],
"description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos"
},
{
"enum": ["crlf"],
"description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows"
},
{
"enum": ["cr"],
"description": "Carriage Return character only (\\r), used very rarely"
},
{
"enum": ["auto"],
"description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)"
}
]
},
"experimentalTernaries": {
"description": "Use curious ternaries, with the question mark after the condition.",
"default": false,
"type": "boolean"
},
"filepath": {
"description": "Specify the input filepath. This will be used to do parser inference.",
"type": "string"
},
"htmlWhitespaceSensitivity": {
"description": "How to handle whitespaces in HTML.",
"default": "css",
"oneOf": [
{
"enum": ["css"],
"description": "Respect the default value of CSS display property."
},
{
"enum": ["strict"],
"description": "Whitespaces are considered sensitive."
},
{
"enum": ["ignore"],
"description": "Whitespaces are considered insensitive."
}
]
},
"insertPragma": {
"description": "Insert @format pragma into file's first docblock comment.",
"default": false,
"type": "boolean"
},
"jsxSingleQuote": {
"description": "Use single quotes in JSX.",
"default": false,
"type": "boolean"
},
"parser": {
"description": "Which parser to use.",
"anyOf": [
{
"enum": ["flow"],
"description": "Flow"
},
{
"enum": ["babel"],
"description": "JavaScript"
},
{
"enum": ["babel-flow"],
"description": "Flow"
},
{
"enum": ["babel-ts"],
"description": "TypeScript"
},
{
"enum": ["typescript"],
"description": "TypeScript"
},
{
"enum": ["acorn"],
"description": "JavaScript"
},
{
"enum": ["espree"],
"description": "JavaScript"
},
{
"enum": ["meriyah"],
"description": "JavaScript"
},
{
"enum": ["css"],
"description": "CSS"
},
{
"enum": ["less"],
"description": "Less"
},
{
"enum": ["scss"],
"description": "SCSS"
},
{
"enum": ["json"],
"description": "JSON"
},
{
"enum": ["json5"],
"description": "JSON5"
},
{
"enum": ["jsonc"],
"description": "JSON with Comments"
},
{
"enum": ["json-stringify"],
"description": "JSON.stringify"
},
{
"enum": ["graphql"],
"description": "GraphQL"
},
{
"enum": ["markdown"],
"description": "Markdown"
},
{
"enum": ["mdx"],
"description": "MDX"
},
{
"enum": ["vue"],
"description": "Vue"
},
{
"enum": ["yaml"],
"description": "YAML"
},
{
"enum": ["glimmer"],
"description": "Ember / Handlebars"
},
{
"enum": ["html"],
"description": "HTML"
},
{
"enum": ["angular"],
"description": "Angular"
},
{
"enum": ["lwc"],
"description": "Lightning Web Components"
},
{
"type": "string",
"description": "Custom parser"
}
]
},
"plugins": {
"description": "Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"printWidth": {
"description": "The line length where Prettier will try wrap.",
"default": 80,
"type": "integer"
},
"proseWrap": {
"description": "How to wrap prose.",
"default": "preserve",
"oneOf": [
{
"enum": ["always"],
"description": "Wrap prose if it exceeds the print width."
},
{
"enum": ["never"],
"description": "Do not wrap prose."
},
{
"enum": ["preserve"],
"description": "Wrap prose as-is."
}
]
},
"quoteProps": {
"description": "Change when properties in objects are quoted.",
"default": "as-needed",
"oneOf": [
{
"enum": ["as-needed"],
"description": "Only add quotes around object properties where required."
},
{
"enum": ["consistent"],
"description": "If at least one property in an object requires quotes, quote all properties."
},
{
"enum": ["preserve"],
"description": "Respect the input use of quotes in object properties."
}
]
},
"rangeEnd": {
"description": "Format code ending at a given character offset (exclusive).\nThe range will extend forwards to the end of the selected statement.",
"default": null,
"type": "integer"
},
"rangeStart": {
"description": "Format code starting at a given character offset.\nThe range will extend backwards to the start of the first line containing the selected statement.",
"default": 0,
"type": "integer"
},
"requirePragma": {
"description": "Require either '@prettier' or '@format' to be present in the file's first docblock comment\nin order for it to be formatted.",
"default": false,
"type": "boolean"
},
"semi": {
"description": "Print semicolons.",
"default": true,
"type": "boolean"
},
"singleAttributePerLine": {
"description": "Enforce single attribute per line in HTML, Vue and JSX.",
"default": false,
"type": "boolean"
},
"singleQuote": {
"description": "Use single quotes instead of double quotes.",
"default": false,
"type": "boolean"
},
"tabWidth": {
"description": "Number of spaces per indentation level.",
"default": 2,
"type": "integer"
},
"trailingComma": {
"description": "Print trailing commas wherever possible when multi-line.",
"default": "all",
"oneOf": [
{
"enum": ["all"],
"description": "Trailing commas wherever possible (including function arguments)."
},
{
"enum": ["es5"],
"description": "Trailing commas where valid in ES5 (objects, arrays, etc.)"
},
{
"enum": ["none"],
"description": "No trailing commas."
}
]
},
"useTabs": {
"description": "Indent with tabs instead of spaces.",
"default": false,
"type": "boolean"
},
"vueIndentScriptAndStyle": {
"description": "Indent script and style tags in Vue files.",
"default": false,
"type": "boolean"
}
}
},
"overridesDefinition": {
"type": "object",
"properties": {
"overrides": {
"type": "array",
"description": "Provide a list of patterns to override prettier configuration.",
"items": {
"type": "object",
"required": ["files"],
"properties": {
"files": {
"description": "Include these files in this override.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"excludeFiles": {
"description": "Exclude these files from this override.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"options": {
"$ref": "#/definitions/optionsDefinition",
"type": "object",
"description": "The options to apply for this override."
}
},
"additionalProperties": false
}
}
}
}
},
"oneOf": [
{
"type": "object",
"allOf": [
{
"$ref": "#/definitions/optionsDefinition"
},
{
"$ref": "#/definitions/overridesDefinition"
}
]
},
{
"type": "string"
}
],
"title": "Schema for .prettierrc"
}

View File

@ -1 +0,0 @@
00e5142e-ac81-48a5-8324-e41209d985f6

View File

@ -1 +0,0 @@
{"pid":14933,"willReleaseAt":0}

View File

@ -1,9 +0,0 @@
File not found: /root/code-server/lib/vscode/node_modules/vsda/rust/web/vsda_bg.wasm
File not found: /root/code-server/lib/vscode/node_modules/vsda/rust/web/vsda.js
[07:09:27] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
[07:14:22] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
[07:14:36] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
[07:15:10] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
[07:16:23] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
File not found: /root/code-server/lib/vscode/node_modules/vsda/rust/web/vsda_bg.wasm
File not found: /root/code-server/lib/vscode/node_modules/vsda/rust/web/vsda.js

View File

@ -1,132 +0,0 @@
[2025-02-08T07:02:34.881Z] info code-server 4.95.3 b0c935a6e0742adde9f7a5f6e5816553ee0e7ffb
[2025-02-08T07:02:34.882Z] info Using user-data-dir /root/.local/share/code-server
[2025-02-08T07:02:34.893Z] info Using config file /root/.config/code-server/config.yaml
[2025-02-08T07:02:34.893Z] info HTTP server listening on http://0.0.0.0:8080/
[2025-02-08T07:02:34.893Z] info - Authentication is enabled
[2025-02-08T07:02:34.893Z] info - Using password from /root/.config/code-server/config.yaml
[2025-02-08T07:02:34.894Z] info - Not serving HTTPS
[2025-02-08T07:02:34.894Z] info Session server listening on /root/.local/share/code-server/code-server-ipc.sock
[07:02:45]
[07:02:45] Extension host agent started.
[07:02:45] Started initializing default profile extensions in extensions installation folder. file:///root/.local/share/code-server/extensions
[07:02:45] Completed initializing default profile extensions in extensions installation folder. file:///root/.local/share/code-server/extensions
[07:03:37] [172.17.0.1][18fbb52b][ManagementConnection] New connection established.
[07:03:37] [172.17.0.1][3b58f5c2][ExtensionHostConnection] New connection established.
[07:03:37] [172.17.0.1][3b58f5c2][ExtensionHostConnection] <895> Launched Extension Host Process.
[07:09:23] Getting Manifest... hamza-aziane.obsidian-dark
[07:09:25] Installing extension: hamza-aziane.obsidian-dark {
isMachineScoped: false,
installOnlyNewlyAddedFromExtensionPack: true,
isApplicationScoped: false,
profileLocation: gr {
scheme: 'file',
authority: '',
path: '/root/.local/share/code-server/extensions/extensions.json',
query: '',
fragment: '',
_formatted: 'file:///root/.local/share/code-server/extensions/extensions.json',
_fsPath: '/root/.local/share/code-server/extensions/extensions.json'
},
productVersion: { version: '1.95.3', date: '2024-11-15T19:35:09.428Z' }
}
[07:09:27] Extension signature verification is not done: hamza-aziane.obsidian-dark
[07:09:27] Extracted extension to file:///root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal: hamza-aziane.obsidian-dark
[07:09:27] Renamed to /root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal
[07:09:27] Extension installed successfully: hamza-aziane.obsidian-dark file:///root/.local/share/code-server/extensions/extensions.json
[07:14:17] Getting Manifest... esbenp.prettier-vscode
[07:14:19] Installing extension: esbenp.prettier-vscode {
isMachineScoped: false,
installPreReleaseVersion: false,
pinned: false,
installOnlyNewlyAddedFromExtensionPack: true,
isApplicationScoped: false,
profileLocation: gr {
scheme: 'file',
authority: '',
path: '/root/.local/share/code-server/extensions/extensions.json',
query: '',
fragment: '',
_formatted: 'file:///root/.local/share/code-server/extensions/extensions.json',
_fsPath: '/root/.local/share/code-server/extensions/extensions.json'
},
productVersion: { version: '1.95.3', date: '2024-11-15T19:35:09.428Z' }
}
[07:14:22] Extension signature verification is not done: esbenp.prettier-vscode
[07:14:22] Extracted extension to file:///root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal: esbenp.prettier-vscode
[07:14:22] Renamed to /root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal
[07:14:22] Extension installed successfully: esbenp.prettier-vscode file:///root/.local/share/code-server/extensions/extensions.json
[07:14:32] Getting Manifest... mads-hartmann.bash-ide-vscode
[07:14:33] Installing extension: mads-hartmann.bash-ide-vscode {
isMachineScoped: false,
installPreReleaseVersion: false,
pinned: false,
installOnlyNewlyAddedFromExtensionPack: true,
isApplicationScoped: false,
profileLocation: gr {
scheme: 'file',
authority: '',
path: '/root/.local/share/code-server/extensions/extensions.json',
query: '',
fragment: '',
_formatted: 'file:///root/.local/share/code-server/extensions/extensions.json',
_fsPath: '/root/.local/share/code-server/extensions/extensions.json'
},
productVersion: { version: '1.95.3', date: '2024-11-15T19:35:09.428Z' }
}
[07:14:36] Extension signature verification is not done: mads-hartmann.bash-ide-vscode
[07:14:36] Extracted extension to file:///root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal: mads-hartmann.bash-ide-vscode
[07:14:36] Renamed to /root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal
[07:14:36] Extension installed successfully: mads-hartmann.bash-ide-vscode file:///root/.local/share/code-server/extensions/extensions.json
[07:15:06] Getting Manifest... oven.bun-vscode
[07:15:08] Installing extension: oven.bun-vscode {
isMachineScoped: false,
installPreReleaseVersion: false,
pinned: false,
installOnlyNewlyAddedFromExtensionPack: true,
isApplicationScoped: false,
profileLocation: gr {
scheme: 'file',
authority: '',
path: '/root/.local/share/code-server/extensions/extensions.json',
query: '',
fragment: '',
_formatted: 'file:///root/.local/share/code-server/extensions/extensions.json',
_fsPath: '/root/.local/share/code-server/extensions/extensions.json'
},
productVersion: { version: '1.95.3', date: '2024-11-15T19:35:09.428Z' }
}
[07:15:10] Extension signature verification is not done: oven.bun-vscode
[07:15:10] Extracted extension to file:///root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal: oven.bun-vscode
[07:15:10] Renamed to /root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal
[07:15:10] Extension installed successfully: oven.bun-vscode file:///root/.local/share/code-server/extensions/extensions.json
[07:16:19] Getting Manifest... mikestead.dotenv
[07:16:21] Installing extension: mikestead.dotenv {
isMachineScoped: false,
installPreReleaseVersion: false,
pinned: false,
installOnlyNewlyAddedFromExtensionPack: true,
isApplicationScoped: false,
profileLocation: gr {
scheme: 'file',
authority: '',
path: '/root/.local/share/code-server/extensions/extensions.json',
query: '',
fragment: '',
_formatted: 'file:///root/.local/share/code-server/extensions/extensions.json',
_fsPath: '/root/.local/share/code-server/extensions/extensions.json'
},
productVersion: { version: '1.95.3', date: '2024-11-15T19:35:09.428Z' }
}
[07:16:23] Extension signature verification is not done: mikestead.dotenv
[07:16:23] Extracted extension to file:///root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal: mikestead.dotenv
[07:16:23] Renamed to /root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal
[07:16:23] Extension installed successfully: mikestead.dotenv file:///root/.local/share/code-server/extensions/extensions.json
[07:18:22] [172.17.0.1][18fbb52b][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
[07:18:23] [172.17.0.1][5dada655][ManagementConnection] New connection established.
[07:18:24] [172.17.0.1][65da025a][ExtensionHostConnection] New connection established.
[07:18:24] [172.17.0.1][65da025a][ExtensionHostConnection] <14933> Launched Extension Host Process.
[07:23:24] [172.17.0.1][3b58f5c2][ExtensionHostConnection] <895> Extension Host Process exited with code: 0, signal: null.

View File

@ -1,9 +1,8 @@
{
"query": {
"folder": "/root/workspace"
},
"update": {
"checked": 1738998217373,
"version": "4.96.4"
}
}
"query": {
"folder": "/root/workspace"
},
"update": {
"version": "4.96.4"
}
}

View File

@ -1 +1,128 @@
[{"identifier":{"id":"hamza-aziane.obsidian-dark","uuid":"22069586-6b97-4c5e-9c31-ca8e6a5667fe"},"version":"1.0.0","location":{"$mid":1,"path":"/root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal","scheme":"file"},"relativeLocation":"hamza-aziane.obsidian-dark-1.0.0-universal","metadata":{"installedTimestamp":1738998565086,"source":"gallery","id":"22069586-6b97-4c5e-9c31-ca8e6a5667fe","publisherId":"bd5ac280-e625-4f19-bbe6-bca8b6598c0a","publisherDisplayName":"Hamza-Aziane","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"hasPreReleaseVersion":false}},{"identifier":{"id":"esbenp.prettier-vscode","uuid":"96fa4707-6983-4489-b7c5-d5ffdfdcce90"},"version":"11.0.0","location":{"$mid":1,"path":"/root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal","scheme":"file"},"relativeLocation":"esbenp.prettier-vscode-11.0.0-universal","metadata":{"installedTimestamp":1738998859385,"pinned":false,"source":"gallery","id":"96fa4707-6983-4489-b7c5-d5ffdfdcce90","publisherId":"d16f4e39-2ffb-44e3-9c0d-79d873570e3a","publisherDisplayName":"esbenp","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"hasPreReleaseVersion":false}},{"identifier":{"id":"mads-hartmann.bash-ide-vscode","uuid":"b1b0f283-8246-4e90-832e-a6c409d378d1"},"version":"1.38.0","location":{"$mid":1,"path":"/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal","scheme":"file"},"relativeLocation":"mads-hartmann.bash-ide-vscode-1.38.0-universal","metadata":{"installedTimestamp":1738998873714,"pinned":false,"source":"gallery","id":"b1b0f283-8246-4e90-832e-a6c409d378d1","publisherId":"f40c9497-3e29-43d8-954d-e60d92bc26f0","publisherDisplayName":"mads-hartmann","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"hasPreReleaseVersion":false}},{"identifier":{"id":"oven.bun-vscode","uuid":"2c58c6a8-c23c-4913-899e-17c90b15274e"},"version":"0.0.8","location":{"$mid":1,"path":"/root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal","scheme":"file"},"relativeLocation":"oven.bun-vscode-0.0.8-universal","metadata":{"installedTimestamp":1738998908155,"pinned":false,"source":"gallery","id":"2c58c6a8-c23c-4913-899e-17c90b15274e","publisherId":"b54c1447-f7ba-421e-be69-48e03c08f0d9","publisherDisplayName":"oven","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"hasPreReleaseVersion":false}},{"identifier":{"id":"mikestead.dotenv","uuid":"532533c9-a894-4a58-9eee-bbfbe7c06f71"},"version":"1.0.1","location":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal","external":"file:///root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal","path":"/root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal","scheme":"file"},"relativeLocation":"mikestead.dotenv-1.0.1-universal","metadata":{"installedTimestamp":1738998981178,"pinned":false,"source":"gallery","id":"532533c9-a894-4a58-9eee-bbfbe7c06f71","publisherId":"b6aa9b98-56e5-4846-b7d2-600d45fc63fc","publisherDisplayName":"mikestead","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"hasPreReleaseVersion":false}}]
[
{
"identifier": {
"id": "hamza-aziane.obsidian-dark",
"uuid": "22069586-6b97-4c5e-9c31-ca8e6a5667fe"
},
"version": "1.0.0",
"location": {
"$mid": 1,
"path": "/root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal",
"scheme": "file"
},
"relativeLocation": "hamza-aziane.obsidian-dark-1.0.0-universal",
"metadata": {
"installedTimestamp": 1738998565086,
"source": "gallery",
"id": "22069586-6b97-4c5e-9c31-ca8e6a5667fe",
"publisherId": "bd5ac280-e625-4f19-bbe6-bca8b6598c0a",
"publisherDisplayName": "Hamza-Aziane",
"targetPlatform": "universal",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false
}
},
{
"identifier": {
"id": "esbenp.prettier-vscode",
"uuid": "96fa4707-6983-4489-b7c5-d5ffdfdcce90"
},
"version": "11.0.0",
"location": {
"$mid": 1,
"path": "/root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal",
"scheme": "file"
},
"relativeLocation": "esbenp.prettier-vscode-11.0.0-universal",
"metadata": {
"installedTimestamp": 1738998859385,
"pinned": false,
"source": "gallery",
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "d16f4e39-2ffb-44e3-9c0d-79d873570e3a",
"publisherDisplayName": "esbenp",
"targetPlatform": "universal",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false
}
},
{
"identifier": {
"id": "mads-hartmann.bash-ide-vscode",
"uuid": "b1b0f283-8246-4e90-832e-a6c409d378d1"
},
"version": "1.38.0",
"location": {
"$mid": 1,
"path": "/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal",
"scheme": "file"
},
"relativeLocation": "mads-hartmann.bash-ide-vscode-1.38.0-universal",
"metadata": {
"installedTimestamp": 1738998873714,
"pinned": false,
"source": "gallery",
"id": "b1b0f283-8246-4e90-832e-a6c409d378d1",
"publisherId": "f40c9497-3e29-43d8-954d-e60d92bc26f0",
"publisherDisplayName": "mads-hartmann",
"targetPlatform": "universal",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false
}
},
{
"identifier": {
"id": "oven.bun-vscode",
"uuid": "2c58c6a8-c23c-4913-899e-17c90b15274e"
},
"version": "0.0.8",
"location": {
"$mid": 1,
"path": "/root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal",
"scheme": "file"
},
"relativeLocation": "oven.bun-vscode-0.0.8-universal",
"metadata": {
"installedTimestamp": 1738998908155,
"pinned": false,
"source": "gallery",
"id": "2c58c6a8-c23c-4913-899e-17c90b15274e",
"publisherId": "b54c1447-f7ba-421e-be69-48e03c08f0d9",
"publisherDisplayName": "oven",
"targetPlatform": "universal",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false
}
},
{
"identifier": {
"id": "mikestead.dotenv",
"uuid": "532533c9-a894-4a58-9eee-bbfbe7c06f71"
},
"version": "1.0.1",
"location": {
"$mid": 1,
"fsPath": "/root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal",
"external": "file:///root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal",
"path": "/root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal",
"scheme": "file"
},
"relativeLocation": "mikestead.dotenv-1.0.1-universal",
"metadata": {
"installedTimestamp": 1738998981178,
"pinned": false,
"source": "gallery",
"id": "532533c9-a894-4a58-9eee-bbfbe7c06f71",
"publisherId": "b6aa9b98-56e5-4846-b7d2-600d45fc63fc",
"publisherDisplayName": "mikestead",
"targetPlatform": "universal",
"updated": false,
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false
}
}
]

View File

@ -1,870 +0,0 @@
["INFO" - 7:14:22 AM] Extension Name: esbenp.prettier-vscode.
["INFO" - 7:14:22 AM] Extension Version: 11.0.0.
["INFO" - 7:17:22 AM] Formatting file:///root/workspace/test.ts
["INFO" - 7:17:22 AM] PrettierInstance:
{
"doc": {
"builders": {
"line": {
"type": "line"
},
"softline": {
"type": "line",
"soft": true
},
"hardline": {
"type": "concat",
"parts": [
{
"type": "line",
"hard": true
},
{
"type": "break-parent"
}
]
},
"literalline": {
"type": "concat",
"parts": [
{
"type": "line",
"hard": true,
"literal": true
},
{
"type": "break-parent"
}
]
},
"lineSuffixBoundary": {
"type": "line-suffix-boundary"
},
"cursor": {
"type": "cursor"
},
"breakParent": {
"type": "break-parent"
},
"trim": {
"type": "trim"
},
"hardlineWithoutBreakParent": {
"type": "line",
"hard": true
},
"literallineWithoutBreakParent": {
"type": "line",
"hard": true,
"literal": true
}
},
"printer": {},
"utils": {},
"debug": {}
},
"version": "2.8.8",
"util": {},
"__internal": {
"errors": {},
"coreOptions": {
"CATEGORY_CONFIG": "Config",
"CATEGORY_EDITOR": "Editor",
"CATEGORY_FORMAT": "Format",
"CATEGORY_OTHER": "Other",
"CATEGORY_OUTPUT": "Output",
"CATEGORY_GLOBAL": "Global",
"CATEGORY_SPECIAL": "Special",
"options": {
"cursorOffset": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": -1,
"range": {
"start": -1,
"end": null,
"step": 1
},
"description": "Print (to stderr) where a cursor at the given position would move to after formatting.\nThis option cannot be used with --range-start and --range-end.",
"cliCategory": "Editor"
},
"endOfLine": {
"since": "1.15.0",
"category": "Global",
"type": "choice",
"default": [
{
"since": "1.15.0",
"value": "auto"
},
{
"since": "2.0.0",
"value": "lf"
}
],
"description": "Which end of line characters to apply.",
"choices": [
{
"value": "lf",
"description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos"
},
{
"value": "crlf",
"description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows"
},
{
"value": "cr",
"description": "Carriage Return character only (\\r), used very rarely"
},
{
"value": "auto",
"description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)"
}
]
},
"filepath": {
"since": "1.4.0",
"category": "Special",
"type": "path",
"description": "Specify the input filepath. This will be used to do parser inference.",
"cliName": "stdin-filepath",
"cliCategory": "Other",
"cliDescription": "Path to the file to pretend that stdin comes from."
},
"insertPragma": {
"since": "1.8.0",
"category": "Special",
"type": "boolean",
"default": false,
"description": "Insert @format pragma into file's first docblock comment.",
"cliCategory": "Other"
},
"parser": {
"since": "0.0.10",
"category": "Global",
"type": "choice",
"default": [
{
"since": "0.0.10",
"value": "babylon"
},
{
"since": "1.13.0"
}
],
"description": "Which parser to use.",
"choices": [
{
"value": "flow",
"description": "Flow"
},
{
"value": "babel",
"since": "1.16.0",
"description": "JavaScript"
},
{
"value": "babel-flow",
"since": "1.16.0",
"description": "Flow"
},
{
"value": "babel-ts",
"since": "2.0.0",
"description": "TypeScript"
},
{
"value": "typescript",
"since": "1.4.0",
"description": "TypeScript"
},
{
"value": "acorn",
"since": "2.6.0",
"description": "JavaScript"
},
{
"value": "espree",
"since": "2.2.0",
"description": "JavaScript"
},
{
"value": "meriyah",
"since": "2.2.0",
"description": "JavaScript"
},
{
"value": "css",
"since": "1.7.1",
"description": "CSS"
},
{
"value": "less",
"since": "1.7.1",
"description": "Less"
},
{
"value": "scss",
"since": "1.7.1",
"description": "SCSS"
},
{
"value": "json",
"since": "1.5.0",
"description": "JSON"
},
{
"value": "json5",
"since": "1.13.0",
"description": "JSON5"
},
{
"value": "json-stringify",
"since": "1.13.0",
"description": "JSON.stringify"
},
{
"value": "graphql",
"since": "1.5.0",
"description": "GraphQL"
},
{
"value": "markdown",
"since": "1.8.0",
"description": "Markdown"
},
{
"value": "mdx",
"since": "1.15.0",
"description": "MDX"
},
{
"value": "vue",
"since": "1.10.0",
"description": "Vue"
},
{
"value": "yaml",
"since": "1.14.0",
"description": "YAML"
},
{
"value": "glimmer",
"since": "2.3.0",
"description": "Ember / Handlebars"
},
{
"value": "html",
"since": "1.15.0",
"description": "HTML"
},
{
"value": "angular",
"since": "1.15.0",
"description": "Angular"
},
{
"value": "lwc",
"since": "1.17.0",
"description": "Lightning Web Components"
}
]
},
"plugins": {
"since": "1.10.0",
"type": "path",
"array": true,
"default": [
{
"value": []
}
],
"category": "Global",
"description": "Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",
"cliName": "plugin",
"cliCategory": "Config"
},
"pluginSearchDirs": {
"since": "1.13.0",
"type": "path",
"array": true,
"default": [
{
"value": []
}
],
"category": "Global",
"description": "Custom directory that contains prettier plugins in node_modules subdirectory.\nOverrides default behavior when plugins are searched relatively to the location of Prettier.\nMultiple values are accepted.",
"cliName": "plugin-search-dir",
"cliCategory": "Config"
},
"printWidth": {
"since": "0.0.0",
"category": "Global",
"type": "int",
"default": 80,
"description": "The line length where Prettier will try wrap.",
"range": {
"start": 0,
"end": null,
"step": 1
}
},
"rangeEnd": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": null,
"range": {
"start": 0,
"end": null,
"step": 1
},
"description": "Format code ending at a given character offset (exclusive).\nThe range will extend forwards to the end of the selected statement.\nThis option cannot be used with --cursor-offset.",
"cliCategory": "Editor"
},
"rangeStart": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": 0,
"range": {
"start": 0,
"end": null,
"step": 1
},
"description": "Format code starting at a given character offset.\nThe range will extend backwards to the start of the first line containing the selected statement.\nThis option cannot be used with --cursor-offset.",
"cliCategory": "Editor"
},
"requirePragma": {
"since": "1.7.0",
"category": "Special",
"type": "boolean",
"default": false,
"description": "Require either '@prettier' or '@format' to be present in the file's first docblock comment\nin order for it to be formatted.",
"cliCategory": "Other"
},
"tabWidth": {
"type": "int",
"category": "Global",
"default": 2,
"description": "Number of spaces per indentation level.",
"range": {
"start": 0,
"end": null,
"step": 1
}
},
"useTabs": {
"since": "1.0.0",
"category": "Global",
"type": "boolean",
"default": false,
"description": "Indent with tabs instead of spaces."
},
"embeddedLanguageFormatting": {
"since": "2.1.0",
"category": "Global",
"type": "choice",
"default": [
{
"since": "2.1.0",
"value": "auto"
}
],
"description": "Control how Prettier formats quoted code embedded in the file.",
"choices": [
{
"value": "auto",
"description": "Format embedded code if Prettier can automatically identify it."
},
{
"value": "off",
"description": "Never automatically format embedded code."
}
]
}
}
},
"optionsModule": {
"hiddenDefaults": {
"astFormat": "estree",
"printer": {},
"locStart": null,
"locEnd": null
}
},
"optionsNormalizer": {},
"utils": {}
},
"__debug": {}
}
["INFO" - 7:17:22 AM] Using ignore file (if present) at /root/workspace/.prettierignore
["INFO" - 7:17:22 AM] File Info:
{
"ignored": false,
"inferredParser": "typescript"
}
["INFO" - 7:17:22 AM] No local configuration (i.e. .prettierrc or .editorconfig) detected, falling back to VS Code configuration
["INFO" - 7:17:22 AM] Prettier Options:
{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"singleAttributePerLine": false,
"bracketSameLine": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"embeddedLanguageFormatting": "auto",
"vueIndentScriptAndStyle": false,
"experimentalTernaries": false,
"filepath": "/root/workspace/test.ts",
"parser": "typescript"
}
["INFO" - 7:17:23 AM] Formatting completed in 173ms.
["INFO" - 7:17:42 AM] Formatting file:///root/workspace/index.ts
["INFO" - 7:17:42 AM] PrettierInstance:
{
"doc": {
"builders": {
"line": {
"type": "line"
},
"softline": {
"type": "line",
"soft": true
},
"hardline": {
"type": "concat",
"parts": [
{
"type": "line",
"hard": true
},
{
"type": "break-parent"
}
]
},
"literalline": {
"type": "concat",
"parts": [
{
"type": "line",
"hard": true,
"literal": true
},
{
"type": "break-parent"
}
]
},
"lineSuffixBoundary": {
"type": "line-suffix-boundary"
},
"cursor": {
"type": "cursor"
},
"breakParent": {
"type": "break-parent"
},
"trim": {
"type": "trim"
},
"hardlineWithoutBreakParent": {
"type": "line",
"hard": true
},
"literallineWithoutBreakParent": {
"type": "line",
"hard": true,
"literal": true
}
},
"printer": {},
"utils": {},
"debug": {}
},
"version": "2.8.8",
"util": {},
"__internal": {
"errors": {},
"coreOptions": {
"CATEGORY_CONFIG": "Config",
"CATEGORY_EDITOR": "Editor",
"CATEGORY_FORMAT": "Format",
"CATEGORY_OTHER": "Other",
"CATEGORY_OUTPUT": "Output",
"CATEGORY_GLOBAL": "Global",
"CATEGORY_SPECIAL": "Special",
"options": {
"cursorOffset": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": -1,
"range": {
"start": -1,
"end": null,
"step": 1
},
"description": "Print (to stderr) where a cursor at the given position would move to after formatting.\nThis option cannot be used with --range-start and --range-end.",
"cliCategory": "Editor"
},
"endOfLine": {
"since": "1.15.0",
"category": "Global",
"type": "choice",
"default": [
{
"since": "1.15.0",
"value": "auto"
},
{
"since": "2.0.0",
"value": "lf"
}
],
"description": "Which end of line characters to apply.",
"choices": [
{
"value": "lf",
"description": "Line Feed only (\\n), common on Linux and macOS as well as inside git repos"
},
{
"value": "crlf",
"description": "Carriage Return + Line Feed characters (\\r\\n), common on Windows"
},
{
"value": "cr",
"description": "Carriage Return character only (\\r), used very rarely"
},
{
"value": "auto",
"description": "Maintain existing\n(mixed values within one file are normalised by looking at what's used after the first line)"
}
]
},
"filepath": {
"since": "1.4.0",
"category": "Special",
"type": "path",
"description": "Specify the input filepath. This will be used to do parser inference.",
"cliName": "stdin-filepath",
"cliCategory": "Other",
"cliDescription": "Path to the file to pretend that stdin comes from."
},
"insertPragma": {
"since": "1.8.0",
"category": "Special",
"type": "boolean",
"default": false,
"description": "Insert @format pragma into file's first docblock comment.",
"cliCategory": "Other"
},
"parser": {
"since": "0.0.10",
"category": "Global",
"type": "choice",
"default": [
{
"since": "0.0.10",
"value": "babylon"
},
{
"since": "1.13.0"
}
],
"description": "Which parser to use.",
"choices": [
{
"value": "flow",
"description": "Flow"
},
{
"value": "babel",
"since": "1.16.0",
"description": "JavaScript"
},
{
"value": "babel-flow",
"since": "1.16.0",
"description": "Flow"
},
{
"value": "babel-ts",
"since": "2.0.0",
"description": "TypeScript"
},
{
"value": "typescript",
"since": "1.4.0",
"description": "TypeScript"
},
{
"value": "acorn",
"since": "2.6.0",
"description": "JavaScript"
},
{
"value": "espree",
"since": "2.2.0",
"description": "JavaScript"
},
{
"value": "meriyah",
"since": "2.2.0",
"description": "JavaScript"
},
{
"value": "css",
"since": "1.7.1",
"description": "CSS"
},
{
"value": "less",
"since": "1.7.1",
"description": "Less"
},
{
"value": "scss",
"since": "1.7.1",
"description": "SCSS"
},
{
"value": "json",
"since": "1.5.0",
"description": "JSON"
},
{
"value": "json5",
"since": "1.13.0",
"description": "JSON5"
},
{
"value": "json-stringify",
"since": "1.13.0",
"description": "JSON.stringify"
},
{
"value": "graphql",
"since": "1.5.0",
"description": "GraphQL"
},
{
"value": "markdown",
"since": "1.8.0",
"description": "Markdown"
},
{
"value": "mdx",
"since": "1.15.0",
"description": "MDX"
},
{
"value": "vue",
"since": "1.10.0",
"description": "Vue"
},
{
"value": "yaml",
"since": "1.14.0",
"description": "YAML"
},
{
"value": "glimmer",
"since": "2.3.0",
"description": "Ember / Handlebars"
},
{
"value": "html",
"since": "1.15.0",
"description": "HTML"
},
{
"value": "angular",
"since": "1.15.0",
"description": "Angular"
},
{
"value": "lwc",
"since": "1.17.0",
"description": "Lightning Web Components"
}
]
},
"plugins": {
"since": "1.10.0",
"type": "path",
"array": true,
"default": [
{
"value": []
}
],
"category": "Global",
"description": "Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",
"cliName": "plugin",
"cliCategory": "Config"
},
"pluginSearchDirs": {
"since": "1.13.0",
"type": "path",
"array": true,
"default": [
{
"value": []
}
],
"category": "Global",
"description": "Custom directory that contains prettier plugins in node_modules subdirectory.\nOverrides default behavior when plugins are searched relatively to the location of Prettier.\nMultiple values are accepted.",
"cliName": "plugin-search-dir",
"cliCategory": "Config"
},
"printWidth": {
"since": "0.0.0",
"category": "Global",
"type": "int",
"default": 80,
"description": "The line length where Prettier will try wrap.",
"range": {
"start": 0,
"end": null,
"step": 1
}
},
"rangeEnd": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": null,
"range": {
"start": 0,
"end": null,
"step": 1
},
"description": "Format code ending at a given character offset (exclusive).\nThe range will extend forwards to the end of the selected statement.\nThis option cannot be used with --cursor-offset.",
"cliCategory": "Editor"
},
"rangeStart": {
"since": "1.4.0",
"category": "Special",
"type": "int",
"default": 0,
"range": {
"start": 0,
"end": null,
"step": 1
},
"description": "Format code starting at a given character offset.\nThe range will extend backwards to the start of the first line containing the selected statement.\nThis option cannot be used with --cursor-offset.",
"cliCategory": "Editor"
},
"requirePragma": {
"since": "1.7.0",
"category": "Special",
"type": "boolean",
"default": false,
"description": "Require either '@prettier' or '@format' to be present in the file's first docblock comment\nin order for it to be formatted.",
"cliCategory": "Other"
},
"tabWidth": {
"type": "int",
"category": "Global",
"default": 2,
"description": "Number of spaces per indentation level.",
"range": {
"start": 0,
"end": null,
"step": 1
}
},
"useTabs": {
"since": "1.0.0",
"category": "Global",
"type": "boolean",
"default": false,
"description": "Indent with tabs instead of spaces."
},
"embeddedLanguageFormatting": {
"since": "2.1.0",
"category": "Global",
"type": "choice",
"default": [
{
"since": "2.1.0",
"value": "auto"
}
],
"description": "Control how Prettier formats quoted code embedded in the file.",
"choices": [
{
"value": "auto",
"description": "Format embedded code if Prettier can automatically identify it."
},
{
"value": "off",
"description": "Never automatically format embedded code."
}
]
}
}
},
"optionsModule": {
"hiddenDefaults": {
"astFormat": "estree",
"printer": {},
"locStart": null,
"locEnd": null
}
},
"optionsNormalizer": {},
"utils": {}
},
"__debug": {}
}
["INFO" - 7:17:42 AM] Using ignore file (if present) at /root/workspace/.prettierignore
["INFO" - 7:17:42 AM] File Info:
{
"ignored": false,
"inferredParser": "typescript"
}
["INFO" - 7:17:42 AM] No local configuration (i.e. .prettierrc or .editorconfig) detected, falling back to VS Code configuration
["INFO" - 7:17:42 AM] Prettier Options:
{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"singleAttributePerLine": false,
"bracketSameLine": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false,
"embeddedLanguageFormatting": "auto",
"vueIndentScriptAndStyle": false,
"experimentalTernaries": false,
"filepath": "/root/workspace/index.ts",
"parser": "typescript"
}
["INFO" - 7:17:42 AM] Formatting completed in 17ms.

View File

@ -1,14 +0,0 @@
[Info - 7:14:37 AM] 07:14:37.281 INFO BackgroundAnalysis: resolving glob "**/*@(.sh|.inc|.bash|.command)" inside "file:///root/workspace"...
[Error - 7:14:37 AM] Unhandled Rejection at promise: [object Promise], reason: TypeError: Cannot read properties of undefined (reading 'apply')
at e.<computed> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:16465)
at wasm://wasm/001ec906:wasm-function[21]:0x1ccf
at e.<computed> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:16465)
at wasm://wasm/001ec906:wasm-function[19]:0x17aa
at wasm://wasm/000b627a:wasm-function[234]:0x25842
at Module._ts_parser_parse_wasm (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:33493)
at Parser.parse (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:53325)
at Analyzer.analyze (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/bash-language-server/out/analyser.js:47:34)
at BashServer.<anonymous> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/bash-language-server/out/server.js:241:45)
at Generator.next (<anonymous>)
[Info - 7:14:37 AM] 07:14:37.295 INFO BackgroundAnalysis: Glob resolved with 0 files after 0.013 seconds
[Info - 7:14:37 AM] 07:14:37.295 INFO BackgroundAnalysis: Completed after 0.013 seconds.

View File

@ -1,111 +0,0 @@
2025-02-08 07:03:39.362 [info] Extension host with pid 895 started
2025-02-08 07:03:39.370 [info] Lock '/root/.local/share/code-server/User/workspaceStorage/38148026/vscode.lock': Lock acquired.
2025-02-08 07:03:39.413 [info] ExtensionService#_doActivateExtension vscode.git-base, startup: true, activationEvent: '*'
2025-02-08 07:03:39.438 [info] ExtensionService#_doActivateExtension vscode.github, startup: true, activationEvent: '*'
2025-02-08 07:03:39.516 [info] Eager extensions activated
2025-02-08 07:03:39.517 [info] ExtensionService#_doActivateExtension vscode.debug-auto-launch, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:03:39.517 [info] ExtensionService#_doActivateExtension vscode.merge-conflict, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:03:40.643 [info] ExtensionService#_doActivateExtension vscode.git, startup: false, activationEvent: 'api', root cause: vscode.github
2025-02-08 07:03:44.543 [info] ExtensionService#_doActivateExtension vscode.npm, startup: false, activationEvent: 'onTerminalQuickFixRequest:ms-vscode.npm-command'
2025-02-08 07:05:03.973 [info] ExtensionService#_doActivateExtension vscode.emmet, startup: false, activationEvent: 'onLanguage'
2025-02-08 07:09:27.873 [info] ExtensionService#_doActivateExtension vscode.configuration-editing, startup: false, activationEvent: 'onLanguage:jsonc'
2025-02-08 07:09:27.873 [info] ExtensionService#_doActivateExtension vscode.json-language-features, startup: false, activationEvent: 'onLanguage:jsonc'
2025-02-08 07:09:27.874 [info] ExtensionService#_doActivateExtension vscode.typescript-language-features, startup: false, activationEvent: 'onLanguage:jsonc'
2025-02-08 07:14:22.282 [info] ExtensionService#_doActivateExtension esbenp.prettier-vscode, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:14:36.984 [info] ExtensionService#_doActivateExtension mads-hartmann.bash-ide-vscode, startup: false, activationEvent: 'onLanguage:shellscript'
2025-02-08 07:15:10.335 [info] ExtensionService#_doActivateExtension oven.bun-vscode, startup: false, activationEvent: 'onLanguage:typescript'
2025-02-08 07:23:24.009 [info] Extension host terminating: renderer disconnected for too long (2)
2025-02-08 07:23:24.010 [info] Lock '/root/.local/share/code-server/User/workspaceStorage/38148026/vscode.lock': Marking the lockfile as scheduled to be released in 6000 ms.
2025-02-08 07:23:24.053 [error] An error occurred when deactivating the extension 'mads-hartmann.bash-ide-vscode':
2025-02-08 07:23:24.053 [error] TypeError: Cannot read properties of undefined (reading 'stop')
at Object.deactivate (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/out/extension.js:63:19)
at V_.eb (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:11724)
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9874
at Array.map (<anonymous>)
at V_.$ (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9862)
at V_.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:10105)
at EC.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:119:1424)
at Xi (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:15085)
at c5.a (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:11997)
at c5.h (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:30:75745)
at listOnTimeout (node:internal/timers:581:17)
at process.processTimers (node:internal/timers:519:7)
2025-02-08 07:23:24.056 [error] Canceled: Canceled
at new rT (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:112694)
at py.U (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:117304)
at s.<computed>.n.charCodeAt.s.<computed> (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:114798)
at Y0.g (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:32313)
at Y0.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31817)
at r.registerCommand.description (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31147)
at Y0.h (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:32833)
at Y0.g (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31910)
at Y0.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31817)
at Object.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:156:37246)
at mh.O [as value] (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:961845)
at D.B (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:746)
at D.C (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:816)
at D.fire (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:1033)
at Object.p [as dispose] (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:983333)
at /root/code-server/lib/vscode/extensions/git/dist/main.js:2:989455
at Array.forEach (<anonymous>)
at b.dispose (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:989441)
at V1.<anonymous> (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:19994)
at V1.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:20090)
at V1.<anonymous> (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:964255)
at V1.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:20090)
at li (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:24:699)
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:14992
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:24:1009
at Object.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:7:2146)
at V_.eb (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:11919)
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9874
at Array.map (<anonymous>)
at V_.$ (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9862)
at V_.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:10105)
at EC.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:119:1424)
at Xi (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:15085)
at c5.a (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:11997)
at c5.h (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:30:75745)
at listOnTimeout (node:internal/timers:581:17)
at process.processTimers (node:internal/timers:519:7) setContext undefined
2025-02-08 07:23:24.058 [error] Canceled: Canceled
at new rT (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:112694)
at py.U (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:117304)
at s.<computed>.n.charCodeAt.s.<computed> (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:31:114798)
at Y0.g (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:32313)
at Y0.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31817)
at r.registerCommand.description (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31147)
at Y0.h (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:32833)
at Y0.g (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31910)
at Y0.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:114:31817)
at Object.executeCommand (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:156:37246)
at set hasGitHubRepositories [as hasGitHubRepositories] (/root/code-server/lib/vscode/extensions/github/dist/extension.js:2:328633)
at /root/code-server/lib/vscode/extensions/github/dist/extension.js:2:329592
at mh.value (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:1073936)
at D.B (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:746)
at D.C (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:816)
at D.fire (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:29:1033)
at Object.p [as dispose] (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:983333)
at /root/code-server/lib/vscode/extensions/git/dist/main.js:2:989455
at Array.forEach (<anonymous>)
at b.dispose (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:989441)
at V1.<anonymous> (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:19994)
at V1.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:20090)
at V1.<anonymous> (/root/code-server/lib/vscode/extensions/git/dist/main.js:2:964255)
at V1.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:108:20090)
at li (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:24:699)
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:14992
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:24:1009
at Object.dispose (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:7:2146)
at V_.eb (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:11919)
at file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9874
at Array.map (<anonymous>)
at V_.$ (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:9862)
at V_.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:118:10105)
at EC.terminate (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:119:1424)
at Xi (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:15085)
at c5.a (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:174:11997)
at c5.h (file:///root/code-server/lib/vscode/out/vs/workbench/api/node/extensionHostProcess.js:30:75745)
at listOnTimeout (node:internal/timers:581:17)
at process.processTimers (node:internal/timers:519:7) setContext undefined
2025-02-08 07:23:24.059 [info] Extension host with pid 895 exiting with code 0

View File

@ -1,68 +0,0 @@
2025-02-08 07:03:40.766 [info] [main] Log level: Info
2025-02-08 07:03:40.766 [info] [main] Validating found git in: "git"
2025-02-08 07:03:40.766 [info] [main] Using git "2.39.5" from "git"
2025-02-08 07:03:40.766 [info] [Model][doInitialScan] Initial repository scan started
2025-02-08 07:03:40.766 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:03:40.766 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:03:40.767 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:03:40.767 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:03:40.769 [info] [Model][doInitialScan] Initial repository scan completed - repositories (0), closed repositories (0), parent repositories (0), unsafe repositories (0)
2025-02-08 07:05:04.003 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:05:04.003 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:08:31.781 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:08:31.781 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:09:28.141 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:09:28.141 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:09:34.171 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:09:34.171 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:09:43.017 [info] > git rev-parse --show-toplevel [3ms]
2025-02-08 07:09:43.017 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:14:22.215 [info] > git rev-parse --show-toplevel [7ms]
2025-02-08 07:14:22.215 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:14:36.946 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:14:36.947 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:15:10.235 [info] > git rev-parse --show-toplevel [5ms]
2025-02-08 07:15:10.235 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:15:10.346 [info] > git rev-parse --show-toplevel [13ms]
2025-02-08 07:15:10.346 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:15:20.127 [info] > git rev-parse --show-toplevel [3ms]
2025-02-08 07:15:20.127 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:16:43.375 [info] > git rev-parse --show-toplevel [4ms]
2025-02-08 07:16:43.375 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:16:45.941 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:16:45.941 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:16:51.059 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:16:51.059 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:17:34.421 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:17:34.421 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:17:40.716 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:17:40.716 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:18:10.789 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:18:10.793 [info] > git rev-parse --git-dir --git-common-dir [1ms]
2025-02-08 07:18:10.800 [info] [Model][openRepository] Opened repository: /root/workspace
2025-02-08 07:18:10.807 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:10.808 [info] > git config --get commit.template [3ms]
2025-02-08 07:18:10.808 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [1ms]
2025-02-08 07:18:10.808 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:10.816 [info] > git status -z -uall [4ms]
2025-02-08 07:18:10.816 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [1ms]
2025-02-08 07:18:10.829 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [7ms]
2025-02-08 07:18:10.829 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:10.830 [error] [GitHistoryProvider][resolveHEADMergeBase] Failed to resolve merge base for master: Error: No such branch: master.
2025-02-08 07:18:10.831 [info] > git config --get commit.template [2ms]
2025-02-08 07:18:10.833 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:10.835 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [2ms]
2025-02-08 07:18:10.835 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:10.840 [info] > git status -z -uall [3ms]
2025-02-08 07:18:10.843 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [3ms]
2025-02-08 07:18:11.116 [info] > git show --textconv :index.ts [3ms]
2025-02-08 07:18:11.118 [info] > git ls-files --stage -- /root/workspace/index.ts [2ms]
2025-02-08 07:18:11.346 [info] > git check-ignore -v -z --stdin [1ms]
2025-02-08 07:18:18.793 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:18.794 [info] > git config --get commit.template [3ms]
2025-02-08 07:18:18.794 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [1ms]
2025-02-08 07:18:18.794 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:18.800 [info] > git status -z -uall [2ms]
2025-02-08 07:18:18.801 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [1ms]
2025-02-08 07:18:20.546 [info] > git show --textconv :bun.lock [5ms]
2025-02-08 07:18:20.547 [info] > git ls-files --stage -- /root/workspace/bun.lock [2ms]

View File

@ -1 +0,0 @@
2025-02-08 07:03:39.557 [info] Log level: Info

View File

@ -1,14 +0,0 @@
2025-02-08 07:15:20.126 [info] read schema from vscode: vscode://schemas/keybindings
2025-02-08 07:16:23.786 [info] read schema from vscode: vscode://schemas/keybindings
2025-02-08 07:16:23.904 [info] cancelled
2025-02-08 07:16:43.373 [info] read schema from vscode: vscode://schemas/settings/user
2025-02-08 07:16:43.440 [info] schema change detected vscode://schemas/settings/user
2025-02-08 07:16:43.548 [info] read schema from vscode: vscode://schemas/settings/resourceLanguage
2025-02-08 07:16:43.554 [info] read schema from vscode: vscode://schemas/launch
2025-02-08 07:16:43.556 [info] read schema from vscode: vscode://schemas/token-styling
2025-02-08 07:16:43.556 [info] read schema from vscode: vscode://schemas/textmate-colors
2025-02-08 07:16:43.556 [info] read schema from vscode: vscode://schemas/workbench-colors
2025-02-08 07:16:43.689 [info] cancelled
2025-02-08 07:16:43.690 [info] read schema from vscode: vscode://schemas/settings/user
2025-02-08 07:16:51.073 [info] schema change detected vscode://schemas/settings/user
2025-02-08 07:16:51.103 [info] read schema from vscode: vscode://schemas/settings/user

View File

@ -1,6 +0,0 @@
2025-02-08 07:09:43.050 [info] Starting TS Server
2025-02-08 07:09:43.050 [info] Using tsserver from: /root/code-server/lib/vscode/extensions/node_modules/typescript/lib/tsserver.js
2025-02-08 07:09:43.050 [info] <syntax> Forking...
2025-02-08 07:09:43.050 [info] <syntax> Starting...
2025-02-08 07:09:43.050 [info] <semantic> Forking...
2025-02-08 07:09:43.050 [info] <semantic> Starting...

View File

@ -1,14 +0,0 @@
[Info - 7:19:51 AM] 07:19:51.711 INFO BackgroundAnalysis: resolving glob "**/*@(.sh|.inc|.bash|.command)" inside "file:///root/workspace"...
[Error - 7:19:51 AM] Unhandled Rejection at promise: [object Promise], reason: TypeError: Cannot read properties of undefined (reading 'apply')
at e.<computed> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:16465)
at wasm://wasm/001ec906:wasm-function[21]:0x1ccf
at e.<computed> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:16465)
at wasm://wasm/001ec906:wasm-function[19]:0x17aa
at wasm://wasm/000b627a:wasm-function[234]:0x25842
at Module._ts_parser_parse_wasm (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:33493)
at Parser.parse (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/web-tree-sitter/tree-sitter.js:1:53325)
at Analyzer.analyze (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/bash-language-server/out/analyser.js:47:34)
at BashServer.<anonymous> (/root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal/node_modules/bash-language-server/out/server.js:241:45)
at Generator.next (<anonymous>)
[Info - 7:19:51 AM] 07:19:51.728 INFO BackgroundAnalysis: Glob resolved with 0 files after 0.017 seconds
[Info - 7:19:51 AM] 07:19:51.728 INFO BackgroundAnalysis: Completed after 0.017 seconds.

View File

@ -1,20 +0,0 @@
2025-02-08 07:18:24.614 [info] Extension host with pid 14933 started
2025-02-08 07:18:24.614 [error] Error: EEXIST: file already exists, open '/root/.local/share/code-server/User/workspaceStorage/38148026/vscode.lock'
2025-02-08 07:18:24.616 [info] Lock '/root/.local/share/code-server/User/workspaceStorage/38148026/vscode.lock': Could not acquire lock, checking if the file is stale.
2025-02-08 07:18:24.620 [info] Lock '/root/.local/share/code-server/User/workspaceStorage/38148026/vscode.lock': The lock does not look stale, elapsed: 845 ms, giving up.
2025-02-08 07:18:24.629 [info] Lock '/root/.local/share/code-server/User/workspaceStorage/38148026-1/vscode.lock': Lock acquired.
2025-02-08 07:18:24.767 [info] ExtensionService#_doActivateExtension vscode.emmet, startup: false, activationEvent: 'onLanguage'
2025-02-08 07:18:24.838 [info] ExtensionService#_doActivateExtension vscode.git-base, startup: true, activationEvent: '*', root cause: vscode.git
2025-02-08 07:18:24.842 [info] ExtensionService#_doActivateExtension vscode.npm, startup: true, activationEvent: 'workspaceContains:package.json'
2025-02-08 07:18:24.881 [info] ExtensionService#_doActivateExtension vscode.git, startup: true, activationEvent: '*'
2025-02-08 07:18:24.881 [info] ExtensionService#_doActivateExtension vscode.github, startup: true, activationEvent: '*'
2025-02-08 07:18:25.143 [info] Eager extensions activated
2025-02-08 07:18:25.143 [info] ExtensionService#_doActivateExtension vscode.debug-auto-launch, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:18:25.144 [info] ExtensionService#_doActivateExtension vscode.merge-conflict, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:18:25.144 [info] ExtensionService#_doActivateExtension esbenp.prettier-vscode, startup: false, activationEvent: 'onStartupFinished'
2025-02-08 07:18:26.370 [info] ExtensionService#_doActivateExtension vscode.typescript-language-features, startup: false, activationEvent: 'onLanguage:typescript'
2025-02-08 07:18:26.370 [info] ExtensionService#_doActivateExtension oven.bun-vscode, startup: false, activationEvent: 'onLanguage:typescript'
2025-02-08 07:18:31.731 [info] ExtensionService#_doActivateExtension vscode.configuration-editing, startup: false, activationEvent: 'onLanguage:json'
2025-02-08 07:18:31.732 [info] ExtensionService#_doActivateExtension vscode.extension-editing, startup: false, activationEvent: 'onLanguage:json'
2025-02-08 07:18:31.732 [info] ExtensionService#_doActivateExtension vscode.json-language-features, startup: false, activationEvent: 'onLanguage:json'
2025-02-08 07:19:51.442 [info] ExtensionService#_doActivateExtension mads-hartmann.bash-ide-vscode, startup: false, activationEvent: 'onLanguage:shellscript'

View File

@ -1,76 +0,0 @@
2025-02-08 07:18:25.342 [info] [main] Log level: Info
2025-02-08 07:18:25.342 [info] [main] Validating found git in: "git"
2025-02-08 07:18:25.342 [info] [main] Using git "2.39.5" from "git"
2025-02-08 07:18:25.342 [info] [Model][doInitialScan] Initial repository scan started
2025-02-08 07:18:25.342 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:18:25.342 [info] > git rev-parse --git-dir --git-common-dir [2ms]
2025-02-08 07:18:25.342 [info] [Model][openRepository] Opened repository: /root/workspace
2025-02-08 07:18:25.342 [info] > git config --get commit.template [5ms]
2025-02-08 07:18:25.342 [info] > git rev-parse --show-toplevel [141ms]
2025-02-08 07:18:25.342 [info] [Model][doInitialScan] Initial repository scan completed - repositories (1), closed repositories (0), parent repositories (0), unsafe repositories (0)
2025-02-08 07:18:25.342 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:25.342 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [2ms]
2025-02-08 07:18:25.342 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:25.342 [info] > git status -z -uall [10ms]
2025-02-08 07:18:25.342 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [8ms]
2025-02-08 07:18:25.342 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [6ms]
2025-02-08 07:18:25.342 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:25.342 [error] [GitHistoryProvider][resolveHEADMergeBase] Failed to resolve merge base for master: Error: No such branch: master.
2025-02-08 07:18:25.342 [info] > git config --get commit.template [3ms]
2025-02-08 07:18:25.342 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:25.342 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [4ms]
2025-02-08 07:18:25.342 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:25.342 [info] > git status -z -uall [5ms]
2025-02-08 07:18:25.342 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [4ms]
2025-02-08 07:18:25.721 [info] > git show --textconv :bun.lock [2ms]
2025-02-08 07:18:25.722 [info] > git ls-files --stage -- /root/workspace/bun.lock [1ms]
2025-02-08 07:18:25.844 [info] > git check-ignore -v -z --stdin [2ms]
2025-02-08 07:18:26.720 [info] > git show --textconv :index.ts [4ms]
2025-02-08 07:18:26.722 [info] > git ls-files --stage -- /root/workspace/index.ts [1ms]
2025-02-08 07:18:35.634 [info] > git show --textconv :package.json [5ms]
2025-02-08 07:18:35.635 [info] > git ls-files --stage -- /root/workspace/package.json [2ms]
2025-02-08 07:18:51.683 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:18:51.684 [info] > git config --get commit.template [3ms]
2025-02-08 07:18:51.684 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [1ms]
2025-02-08 07:18:51.684 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:18:51.689 [info] > git status -z -uall [2ms]
2025-02-08 07:18:51.690 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [1ms]
2025-02-08 07:19:39.004 [info] > git show --textconv :index.ts [3ms]
2025-02-08 07:19:39.006 [info] > git ls-files --stage -- /root/workspace/index.ts [1ms]
2025-02-08 07:19:49.573 [info] > git show --textconv :test.ts [4ms]
2025-02-08 07:19:49.574 [info] > git ls-files --stage -- /root/workspace/test.ts [2ms]
2025-02-08 07:19:51.506 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:19:51.506 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:19:53.166 [info] > git show --textconv :package.json [3ms]
2025-02-08 07:19:53.167 [info] > git ls-files --stage -- /root/workspace/package.json [1ms]
2025-02-08 07:20:00.795 [info] > git show --textconv :package.json [5ms]
2025-02-08 07:20:00.797 [info] > git ls-files --stage -- /root/workspace/package.json [2ms]
2025-02-08 07:20:01.465 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:20:01.465 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:20:55.956 [info] > git show --textconv :package.json [4ms]
2025-02-08 07:20:55.957 [info] > git ls-files --stage -- /root/workspace/package.json [1ms]
2025-02-08 07:20:58.393 [info] [Git][getRemotes] No remotes found in the git config file
2025-02-08 07:20:58.394 [info] > git config --get commit.template [4ms]
2025-02-08 07:20:58.394 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) refs/heads/master refs/remotes/master [1ms]
2025-02-08 07:20:58.394 [warning] [Git][getBranch] No such branch: master
2025-02-08 07:20:58.400 [info] > git status -z -uall [3ms]
2025-02-08 07:20:58.400 [info] > git for-each-ref --sort -committerdate --format %(refname) %(objectname) %(*objectname) [1ms]
2025-02-08 07:21:39.905 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [18ms]
2025-02-08 07:21:39.905 [info] fatal: bad revision 'refs/heads/master'
2025-02-08 07:21:39.906 [error] [GitHistoryProvider][provideHistoryItems] Failed to get history items with options '{"historyItemRefs":["refs/heads/master"],"limit":50,"skip":0}': Failed to execute git {
"exitCode": 128,
"gitCommand": "log",
"stdout": "",
"stderr": "fatal: bad revision 'refs/heads/master'\n"
}
2025-02-08 07:21:40.411 [info] > git check-ignore -v -z --stdin [1ms]
2025-02-08 07:21:47.492 [info] > git show --textconv :index.ts [4ms]
2025-02-08 07:21:47.492 [info] > git ls-files --stage -- /root/workspace/index.ts [1ms]
2025-02-08 07:21:57.878 [info] > git show --textconv :package.json [3ms]
2025-02-08 07:21:57.878 [info] > git ls-files --stage -- /root/workspace/package.json [1ms]
2025-02-08 07:22:34.096 [info] > git rev-parse --show-toplevel [2ms]
2025-02-08 07:22:34.096 [info] fatal: not a git repository (or any of the parent directories): .git
2025-02-08 07:23:24.754 [info] > git show --textconv :index.ts [3ms]
2025-02-08 07:23:24.755 [info] > git ls-files --stage -- /root/workspace/index.ts [1ms]
2025-02-08 07:24:03.855 [info] > git rev-parse --show-toplevel [1ms]
2025-02-08 07:24:03.855 [info] fatal: not a git repository (or any of the parent directories): .git

View File

@ -1 +0,0 @@
2025-02-08 07:18:25.342 [info] Log level: Info

View File

@ -1,26 +0,0 @@
2025-02-08 07:18:35.472 [info] read schema from vscode: vscode://schemas/vscode-extensions
2025-02-08 07:18:35.638 [info] read schema from vscode: vscode://schemas/toolsParameters
2025-02-08 07:18:35.639 [info] read schema from vscode: vscode://schemas/settings/configurationDefaults
2025-02-08 07:18:35.723 [info] read schema from vscode: vscode://schemas/settings/resourceLanguage
2025-02-08 07:18:35.730 [info] read schema from vscode: vscode://schemas/token-styling
2025-02-08 07:18:35.731 [info] read schema from vscode: vscode://schemas/textmate-colors
2025-02-08 07:18:35.731 [info] read schema from vscode: vscode://schemas/workbench-colors
2025-02-08 07:19:51.763 [info] schema change detected vscode://schemas/settings/configurationDefaults
2025-02-08 07:19:51.765 [info] read schema from vscode: vscode://schemas/vscode-extensions
2025-02-08 07:19:51.812 [info] read schema from vscode: vscode://schemas/settings/configurationDefaults
2025-02-08 07:20:01.464 [info] read schema from vscode: vscode://schemas/settings/user
2025-02-08 07:20:01.574 [info] schema change detected vscode://schemas/settings/user
2025-02-08 07:20:01.574 [info] schema change detected vscode://schemas/settings/configurationDefaults
2025-02-08 07:20:01.610 [info] read schema from vscode: vscode://schemas/launch
2025-02-08 07:20:01.682 [info] cancelled
2025-02-08 07:20:01.683 [info] read schema from vscode: vscode://schemas/settings/user
2025-02-08 07:20:01.683 [info] read schema from vscode: vscode://schemas/vscode-extensions
2025-02-08 07:20:01.836 [info] read schema from vscode: vscode://schemas/settings/configurationDefaults
2025-02-08 07:20:55.795 [info] schema change detected vscode://schemas/settings/user
2025-02-08 07:20:55.795 [info] schema change detected vscode://schemas/settings/configurationDefaults
2025-02-08 07:20:55.797 [info] read schema from vscode: vscode://schemas/vscode-extensions
2025-02-08 07:20:55.812 [info] cancelled
2025-02-08 07:20:55.813 [info] read schema from vscode: vscode://schemas/settings/user
2025-02-08 07:20:55.839 [info] read schema from vscode: vscode://schemas/settings/configurationDefaults
2025-02-08 07:20:56.069 [info] cancelled
2025-02-08 07:22:34.094 [info] read schema from vscode: vscode://schemas/keybindings

View File

@ -1,6 +0,0 @@
2025-02-08 07:18:26.706 [info] Starting TS Server
2025-02-08 07:18:26.706 [info] Using tsserver from: /root/code-server/lib/vscode/extensions/node_modules/typescript/lib/tsserver.js
2025-02-08 07:18:26.706 [info] <syntax> Forking...
2025-02-08 07:18:26.706 [info] <syntax> Starting...
2025-02-08 07:18:26.706 [info] <semantic> Forking...
2025-02-08 07:18:26.706 [info] <semantic> Starting...

View File

@ -1,4 +0,0 @@
2025-02-08 07:18:25.170 [info] Expanding terminal instance, old id 38148026-5 -> new id undefined
2025-02-08 07:18:29.305 [warning] Persistent process "5": Process had no disconnect runners but was an orphan
2025-02-08 07:18:29.305 [info] Persistent process reconnection "5"
2025-02-08 07:18:29.326 [info] Persistent process "5": Replaying 4913 chars and 1 size events

View File

@ -1,51 +0,0 @@
2025-02-08 07:02:45.722 [info]
2025-02-08 07:02:45.734 [info] Extension host agent started.
2025-02-08 07:02:45.771 [info] Started initializing default profile extensions in extensions installation folder. file:///root/.local/share/code-server/extensions
2025-02-08 07:02:45.783 [info] Completed initializing default profile extensions in extensions installation folder. file:///root/.local/share/code-server/extensions
2025-02-08 07:03:37.084 [info] [172.17.0.1][18fbb52b][ManagementConnection] New connection established.
2025-02-08 07:03:37.751 [info] [172.17.0.1][3b58f5c2][ExtensionHostConnection] New connection established.
2025-02-08 07:03:37.844 [info] [172.17.0.1][3b58f5c2][ExtensionHostConnection] <895> Launched Extension Host Process.
2025-02-08 07:09:23.145 [info] Getting Manifest... hamza-aziane.obsidian-dark
2025-02-08 07:09:25.058 [info] Installing extension: hamza-aziane.obsidian-dark {"isMachineScoped":false,"installOnlyNewlyAddedFromExtensionPack":true,"isApplicationScoped":false,"profileLocation":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/extensions.json","external":"file:///root/.local/share/code-server/extensions/extensions.json","path":"/root/.local/share/code-server/extensions/extensions.json","scheme":"file"},"productVersion":{"version":"1.95.3","date":"2024-11-15T19:35:09.428Z"}}
2025-02-08 07:09:27.619 [error] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
2025-02-08 07:09:27.620 [info] Extension signature verification is not done: hamza-aziane.obsidian-dark
2025-02-08 07:09:27.637 [info] Extracted extension to file:///root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal: hamza-aziane.obsidian-dark
2025-02-08 07:09:27.640 [info] Renamed to /root/.local/share/code-server/extensions/hamza-aziane.obsidian-dark-1.0.0-universal
2025-02-08 07:09:27.647 [info] Extension installed successfully: hamza-aziane.obsidian-dark file:///root/.local/share/code-server/extensions/extensions.json
2025-02-08 07:14:17.502 [info] Getting Manifest... esbenp.prettier-vscode
2025-02-08 07:14:19.311 [info] Installing extension: esbenp.prettier-vscode {"isMachineScoped":false,"installPreReleaseVersion":false,"pinned":false,"installOnlyNewlyAddedFromExtensionPack":true,"isApplicationScoped":false,"profileLocation":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/extensions.json","external":"file:///root/.local/share/code-server/extensions/extensions.json","path":"/root/.local/share/code-server/extensions/extensions.json","scheme":"file"},"productVersion":{"version":"1.95.3","date":"2024-11-15T19:35:09.428Z"}}
2025-02-08 07:14:22.052 [error] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
2025-02-08 07:14:22.052 [info] Extension signature verification is not done: esbenp.prettier-vscode
2025-02-08 07:14:22.108 [info] Extracted extension to file:///root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal: esbenp.prettier-vscode
2025-02-08 07:14:22.112 [info] Renamed to /root/.local/share/code-server/extensions/esbenp.prettier-vscode-11.0.0-universal
2025-02-08 07:14:22.118 [info] Extension installed successfully: esbenp.prettier-vscode file:///root/.local/share/code-server/extensions/extensions.json
2025-02-08 07:14:32.373 [info] Getting Manifest... mads-hartmann.bash-ide-vscode
2025-02-08 07:14:33.666 [info] Installing extension: mads-hartmann.bash-ide-vscode {"isMachineScoped":false,"installPreReleaseVersion":false,"pinned":false,"installOnlyNewlyAddedFromExtensionPack":true,"isApplicationScoped":false,"profileLocation":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/extensions.json","external":"file:///root/.local/share/code-server/extensions/extensions.json","path":"/root/.local/share/code-server/extensions/extensions.json","scheme":"file"},"productVersion":{"version":"1.95.3","date":"2024-11-15T19:35:09.428Z"}}
2025-02-08 07:14:36.428 [error] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
2025-02-08 07:14:36.429 [info] Extension signature verification is not done: mads-hartmann.bash-ide-vscode
2025-02-08 07:14:36.856 [info] Extracted extension to file:///root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal: mads-hartmann.bash-ide-vscode
2025-02-08 07:14:36.860 [info] Renamed to /root/.local/share/code-server/extensions/mads-hartmann.bash-ide-vscode-1.38.0-universal
2025-02-08 07:14:36.867 [info] Extension installed successfully: mads-hartmann.bash-ide-vscode file:///root/.local/share/code-server/extensions/extensions.json
2025-02-08 07:15:06.781 [info] Getting Manifest... oven.bun-vscode
2025-02-08 07:15:08.090 [info] Installing extension: oven.bun-vscode {"isMachineScoped":false,"installPreReleaseVersion":false,"pinned":false,"installOnlyNewlyAddedFromExtensionPack":true,"isApplicationScoped":false,"profileLocation":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/extensions.json","external":"file:///root/.local/share/code-server/extensions/extensions.json","path":"/root/.local/share/code-server/extensions/extensions.json","scheme":"file"},"productVersion":{"version":"1.95.3","date":"2024-11-15T19:35:09.428Z"}}
2025-02-08 07:15:10.130 [error] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
2025-02-08 07:15:10.130 [info] Extension signature verification is not done: oven.bun-vscode
2025-02-08 07:15:10.137 [info] Extracted extension to file:///root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal: oven.bun-vscode
2025-02-08 07:15:10.140 [info] Renamed to /root/.local/share/code-server/extensions/oven.bun-vscode-0.0.8-universal
2025-02-08 07:15:10.146 [info] Extension installed successfully: oven.bun-vscode file:///root/.local/share/code-server/extensions/extensions.json
2025-02-08 07:16:19.573 [info] Getting Manifest... mikestead.dotenv
2025-02-08 07:16:21.124 [info] Installing extension: mikestead.dotenv {"isMachineScoped":false,"installPreReleaseVersion":false,"pinned":false,"installOnlyNewlyAddedFromExtensionPack":true,"isApplicationScoped":false,"profileLocation":{"$mid":1,"fsPath":"/root/.local/share/code-server/extensions/extensions.json","external":"file:///root/.local/share/code-server/extensions/extensions.json","path":"/root/.local/share/code-server/extensions/extensions.json","scheme":"file"},"productVersion":{"version":"1.95.3","date":"2024-11-15T19:35:09.428Z"}}
2025-02-08 07:16:23.717 [error] Could not load vsce-sign module Cannot find package '@vscode/vsce-sign' imported from /root/code-server/lib/vscode/out/server-main.js
2025-02-08 07:16:23.717 [info] Extension signature verification is not done: mikestead.dotenv
2025-02-08 07:16:23.724 [info] Extracted extension to file:///root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal: mikestead.dotenv
2025-02-08 07:16:23.742 [info] Renamed to /root/.local/share/code-server/extensions/mikestead.dotenv-1.0.1-universal
2025-02-08 07:16:23.747 [info] Extension installed successfully: mikestead.dotenv file:///root/.local/share/code-server/extensions/extensions.json
2025-02-08 07:18:22.741 [info] [172.17.0.1][18fbb52b][ManagementConnection] The client has disconnected gracefully, so the connection will be disposed.
2025-02-08 07:18:23.828 [info] [172.17.0.1][5dada655][ManagementConnection] New connection established.
2025-02-08 07:18:24.282 [info] [172.17.0.1][65da025a][ExtensionHostConnection] New connection established.
2025-02-08 07:18:24.288 [info] [172.17.0.1][65da025a][ExtensionHostConnection] <14933> Launched Extension Host Process.
2025-02-08 07:23:24.077 [info] [172.17.0.1][3b58f5c2][ExtensionHostConnection] <895> Extension Host Process exited with code: 0, signal: null.