Rule | Description |
---|---|
constructor-super | require super() calls in constructors |
for-direction | enforce "for" loop update clause moving the counter in the right direction. |
getter-return | enforce return statements in getters |
no-async-promise-executor | disallow using an async function as a Promise executor |
no-case-declarations | disallow lexical declarations in case clauses |
no-class-assign | disallow reassigning class members |
no-compare-neg-zero | disallow comparing against -0 |
no-cond-assign | disallow assignment operators in conditional expressions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
"workbench.colorCustomizations": { | |
"[GitHub Dark]": { | |
"focusBorder": "#AB77F4", | |
"tab.activeBorderTop": "#AB77F4", | |
"panelTitle.activeBorder": "#AB77F4", | |
"activityBar.activeBorder": "#AB77F4", | |
"extensionIcon.starForeground": "#AB77F4", | |
"peekView.border": "#AB77F4", | |
"editorLightBulb.foreground": "#AB77F4", | |
"editorLightBulbAutoFix.foreground": "#AB77F4", |
Mod | Info |
---|---|
Better Mount HUD | Improves mount GUI by showing more information |
ClickThrough | Open containers through item frames & signs |
Cloth Config API | Required by some mods |
Continuity | Connected textures (requires Indium) |
Dynamic FPS | Render only 1fps when unfocused |
Enhanced Block Entities | Turn block entities into regular blocks (optimization) |
Fabric API | Required by most mods |
FerriteCore | Reduce memory usage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/dependabot/dependabot-core/issues/1736 | |
name: Dependabot | |
on: pull_request_target | |
permissions: read-all | |
jobs: | |
update-lockfile: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
permissions: | |
pull-requests: write |
-
Download
archlinux-bootstrap-<version>-x86_64.tar.gz
from one of the mirrors. You should verify its signature. -
While it's possible to import a
.tar.gz
into WSL, Arch's bootstrap needs to be adjusted first. Open any Linux distro that can transfer files to/from Windows. (WSL counts.) -
In Linux:
# This needs to be done as root to avoid WSL permission issues. sudo -i # Extract it, cd into the folder, and compress it again.
Generated with the following command:
curl "https://discord.com/api/v10/applications/detectable" | jq --raw-output '"Icon|Name\n---|---", (sort_by(.name) | .[] | "|" + .name)'
Icon | Name |
---|---|
100% Orange Juice | |
140 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: wiki | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- wiki/** | |
- .github/workflows/wiki.yml | |
concurrency: | |
group: wiki |