File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 " Turborepo" ,
2424 " stefanzweifel" ,
2525 " venv" ,
26- " scaffold"
26+ " scaffold" ,
27+ " scaffolder" ,
28+ " scaffolders"
2729 ],
2830 "version" : " 0.2"
2931}
Original file line number Diff line number Diff line change 1- // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2- // https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/typescript-node
31{
42 "name" : " Node.js & TypeScript" ,
53 "build" : {
64 "dockerfile" : " Dockerfile" ,
7- // Update 'VARIANT' to pick a Node version: 18, 16, 14.
8- // Append -bullseye or -buster to pin to an OS version.
9- // Use -bullseye variants on local on arm64/Apple Silicon.
105 "args" : {
116 "VARIANT" : " 18"
127 }
138 },
14-
15- // Configure tool-specific properties.
169 "customizations" : {
17- // Configure properties specific to VS Code.
1810 "vscode" : {
19- // Add the IDs of extensions you want installed when the container is created.
2011 "extensions" : [" dbaeumer.vscode-eslint" ]
2112 }
2213 },
23-
24- // Use 'forwardPorts' to make a list of ports inside the container available locally.
25- // "forwardPorts": [],
26-
27- // Use 'postCreateCommand' to run commands after the container is created.
28- // "postCreateCommand": "yarn install",
29-
30- // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
3114 "remoteUser" : " node"
3215}
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ insert_final_newline = true
1111trim_trailing_whitespace = true
1212
1313[* .md ]
14- insert_final_newline = false
14+ insert_final_newline = true
1515trim_trailing_whitespace = false
Original file line number Diff line number Diff line change @@ -89,11 +89,13 @@ jobs:
8989 LLM_ADVISOR_ENABLED : >-
9090 ${{
9191 github.event_name != 'pull_request' ||
92- (github.event.pull_request.user.login != 'dependabot[bot]' &&
93- github.event.pull_request.user.login != 'renovate[bot]' &&
94- github.event.pull_request.user.login != 'github-actions[bot]' &&
95- !startsWith(github.event.pull_request.user.login, 'dependabot') &&
96- !startsWith(github.event.pull_request.user.login, 'renovate'))
92+ (
93+ github.event.pull_request.user.login != 'dependabot[bot]' &&
94+ github.event.pull_request.user.login != 'renovate[bot]' &&
95+ github.event.pull_request.user.login != 'github-actions[bot]' &&
96+ !startsWith(github.event.pull_request.user.login, 'dependabot') &&
97+ !startsWith(github.event.pull_request.user.login, 'renovate')
98+ )
9799 }}
98100
99101 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ APPLY_FIXES: all
1414# default
1515# ENABLE_LINTERS:
1616
17+ DISABLE_LINTERS :
18+ - COPYPASTE_JSCPD
19+ - REPOSITORY_CHECKOV
20+ - REPOSITORY_GRYPE
21+ - REPOSITORY_TRIVY
22+ - SPELL_LYCHEE
23+
1724# DISABLE:
1825# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
1926# - SPELL # Uncomment to disable checks of spelling mistakes
You can’t perform that action at this time.
0 commit comments