Compare commits

..

No commits in common. "e55a5da8170b401e99d748fd2556dbe0ad48ba9b" and "d40f7858a0c4b30f48be0f9870e31bdc1883e4d3" have entirely different histories.

7 changed files with 21 additions and 34 deletions

View File

@ -5,7 +5,7 @@
ci:
# Attempts to use networking and fails at name resolution, local hook
# skip: [bundler-audit, pylint, latexmk, exiftool]
skip: [install-dev-deps, prettier]
skip: [pnpm-install-dev, prettier]
# Forĝejo/Gitea mirrors will autoclose pull requests. This should decrease
# the frequency of unnecessary PRs.
# https://github.com/pre-commit-ci/issues/issues/83
@ -132,16 +132,16 @@ repos:
- repo: local
hooks:
- id: install-dev-deps
- id: pnpm-install-dev
name: Install pnpm dev dependencies
entry: corepack pnpm install -D
entry: pnpm install -D
language: system
always_run: true
verbose: true
pass_filenames: false
- id: prettier
name: prettier
entry: corepack pnpm exec prettier --cache --ignore-unknown --write
entry: pnpm exec prettier --cache --ignore-unknown --write
language: system
exclude_types: [json]

View File

@ -13,11 +13,11 @@
{ "files": ".prettierrc", "options": { "parser": "json" } },
{
"files": "conf/librewolf.overrides.cfg",
"options": { "parser": ".js" }
"options": { "parser": "javascript" }
},
{
"files": "conf/autoconfig.js.online",
"options": { "parser": ".js" }
"options": { "parser": "javascript" }
}
]
}

View File

@ -1,12 +1,11 @@
# @format
# This CITATION.cff file was generated with cffinit.
# Visit https://citation-file-format.github.io/cff-initializer-javascript/#/ to generate yours today!
cff-version: 1.2.0
title: shell-things
message: >-
If you use this dataset, please cite it using the metadata from this file.
If you use this dataset, please cite it using the metadata
from this file.
type: dataset
authors:
- given-names: Aminda

View File

@ -1,3 +0,0 @@
# Required for mounting EFI partitions
force_drivers+=" vfat "
add_dracutmodules+=" uefi-lib "

3
package.json vendored
View File

@ -6,6 +6,5 @@
"prettier-plugin-nginx": "1.0.3",
"prettier-plugin-sh": "0.14.0",
"prettier-plugin-toml": "2.0.1"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}
}

View File

@ -577,19 +577,15 @@ alias mkdir="\mkdir --verbose"
alias chattr="\chattr -V"
alias chmod="\chmod --verbose"
# https://github.com/nodejs/corepack/blob/v0.28.2/README.md#corepack-enable--name
if hash corepack 2> /dev/null; then
alias yarn="corepack yarn"
alias yarnpkg="corepack yarnpkg"
alias pnpm="corepack pnpm"
alias pnpx="corepack pnpx"
alias npm="corepack npm"
alias npx="corepack npx"
# pnpm does less duplicating around
if hash pnpm 2> /dev/null; then
alias npm=pnpm
alias npmx=pnpx
alias npx=pnpx
alias pnpmx=pnpx
if ! hash prettier 2> /dev/null; then
alias prettier="pnpm exec prettier --cache --ignore-unknown"
fi
else
echo "WARNING! corepack is not installed."
fi
# github-pages etc.

View File

@ -567,19 +567,15 @@ alias mkdir="\mkdir --verbose"
alias chattr="\chattr -V"
alias chmod="\chmod --verbose"
# https://github.com/nodejs/corepack/blob/v0.28.2/README.md#corepack-enable--name
if hash corepack 2>/dev/null; then
alias yarn="corepack yarn"
alias yarnpkg="corepack yarnpkg"
alias pnpm="corepack pnpm"
alias pnpx="corepack pnpx"
alias npm="corepack npm"
alias npx="corepack npx"
# pnpm does less duplicating around
if hash pnpm 2>/dev/null; then
alias npm=pnpm
alias npmx=pnpx
alias npx=pnpx
alias pnpmx=pnpx
if ! hash prettier 2>/dev/null; then
alias prettier="pnpm exec prettier --cache --ignore-unknown"
fi
else
echo "WARNING! corepack is not installed."
fi
# github-pages etc.