npm uninstall eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-config-prettier eslint-plugin-prettierrm .eslintrc.jsnpm install -D oxlintnpm uninstall eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-config-prettier eslint-plugin-prettierrm .eslintrc.jsnpm install -D oxlint| { | |
| "permissions": { | |
| "allow": [ | |
| "Read", | |
| "Glob", | |
| "Grep", | |
| "LS", | |
| "Edit", | |
| "MultiEdit", | |
| "Write(src/**)", |
| #!/bin/bash | |
| # === CONFIGURATION === | |
| BOT_TOKEN="" | |
| CHAT_ID="" | |
| HOSTNAME=$(hostname) | |
| get_cpu_load() { | |
| top -bn2 | grep "Cpu(s)" | tail -n1 | awk -F',' '{print 100-$4}' | awk '{printf "%.1f\n", $1}' | |
| } |
| 4.0.0: | |
| Windows: https://desktop.docker.com/win/main/amd64/67817/Docker%20Desktop%20Installer.exe | |
| Mac with Intel chip: https://desktop.docker.com/mac/main/amd64/67817/Docker.dmg | |
| Mac with Apple chip: https://desktop.docker.com/mac/main/arm64/67817/Docker.dmg | |
| release_date: '2021-08-31' | |
| 4.0.1: | |
| Windows: https://desktop.docker.com/win/main/amd64/68347/Docker%20Desktop%20Installer.exe | |
| Mac with Intel chip: https://desktop.docker.com/mac/main/amd64/68347/Docker.dmg | |
| Mac with Apple chip: https://desktop.docker.com/mac/main/arm64/68347/Docker.dmg | |
| release_date: '2021-09-13' |
| import { createConnection, getConnection, Entity, getRepository } from "typeorm"; | |
| import { PrimaryGeneratedColumn, Column } from "typeorm"; | |
| @Entity() | |
| export class MyEntity { | |
| @PrimaryGeneratedColumn() | |
| id?: number; | |
| @Column() | |
| name?: string; |
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
| git commit --amend --date="now" --no-edit |
| { | |
| "compilerOptions": { | |
| /* Base Options: */ | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "target": "es2022", | |
| "allowJs": true, | |
| "resolveJsonModule": true, | |
| "moduleDetection": "force", | |
| "isolatedModules": true, |