feat: enable pre-commit checks
This commit is contained in:
parent
c2afb2c5d1
commit
a13a15cbd9
8
.envrc
Normal file
8
.envrc
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
use flake .nix
|
||||||
|
|
||||||
|
if on_git_branch; then
|
||||||
|
echo
|
||||||
|
git status --short --branch
|
||||||
|
echo
|
||||||
|
git fetch
|
||||||
|
fi
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,4 +2,3 @@
|
|||||||
# Ignore build outputs from performing a nix-build or `nix build` command
|
# Ignore build outputs from performing a nix-build or `nix build` command
|
||||||
result
|
result
|
||||||
result-*
|
result-*
|
||||||
|
|
||||||
|
25
.nix/flake.lock
Normal file
25
.nix/flake.lock
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1720418205,
|
||||||
|
"narHash": "sha256-cPJoFPXU44GlhWg4pUk9oUPqurPlCFZ11ZQPk21GTPU=",
|
||||||
|
"rev": "655a58a72a6601292512670343087c2d75d859c1",
|
||||||
|
"revCount": 650378,
|
||||||
|
"type": "tarball",
|
||||||
|
"url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.650378%2Brev-655a58a72a6601292512670343087c2d75d859c1/019095fe-96b2-7a7c-ad7c-2131b3fb6fa7/source.tar.gz"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"type": "tarball",
|
||||||
|
"url": "https://flakehub.com/f/NixOS/nixpkgs/0.1.%2A.tar.gz"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
32
.nix/flake.nix
Normal file
32
.nix/flake.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
description = "A flake editing flake";
|
||||||
|
|
||||||
|
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
|
||||||
|
|
||||||
|
outputs = { nixpkgs, ... }:
|
||||||
|
let
|
||||||
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||||
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
||||||
|
default = pkgs.mkShell.override
|
||||||
|
{
|
||||||
|
# Override stdenv in order to change compiler:
|
||||||
|
# stdenv = pkgs.clangStdenv;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
packages = with pkgs; [
|
||||||
|
pre-commit
|
||||||
|
commitizen
|
||||||
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
pre-commit install --allow-missing-config --hook-type pre-commit --hook-type commit-msg
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
27
.pre-commit-config.yaml
Normal file
27
.pre-commit-config.yaml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# See https://pre-commit.com for more information
|
||||||
|
# See https://pre-commit.com/hooks.html for more hooks
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v4.6.0
|
||||||
|
hooks:
|
||||||
|
- id: trailing-whitespace
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: check-yaml
|
||||||
|
- id: check-added-large-files
|
||||||
|
- id: detect-private-key
|
||||||
|
- id: mixed-line-ending
|
||||||
|
|
||||||
|
- repo: https://github.com/commitizen-tools/commitizen
|
||||||
|
rev: v3.27.0
|
||||||
|
hooks:
|
||||||
|
- id: commitizen
|
||||||
|
stages: [commit-msg]
|
||||||
|
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: home-manager-check
|
||||||
|
name: Home Manager Config Check
|
||||||
|
entry: home-manager switch --dry-run
|
||||||
|
language: system
|
||||||
|
pass_filenames: false
|
||||||
|
exclude: ^docs/
|
@ -82,7 +82,7 @@
|
|||||||
uri=''${1}
|
uri=''${1}
|
||||||
dir=''${2}
|
dir=''${2}
|
||||||
|
|
||||||
if [[ -z ''${dir} ]]; then
|
if [[ -z ''${dir} ]]; then
|
||||||
dir=''$(basename ''${1} .git)
|
dir=''$(basename ''${1} .git)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -102,17 +102,17 @@
|
|||||||
'')
|
'')
|
||||||
|
|
||||||
(writeShellScriptBin "git-make-relative" ''
|
(writeShellScriptBin "git-make-relative" ''
|
||||||
|
|
||||||
gitfile=''${1}
|
gitfile=''${1}
|
||||||
|
|
||||||
if [[ -z ''${gitfile} ]]; then
|
if [[ -z ''${gitfile} ]]; then
|
||||||
gitfile=".git"
|
gitfile=".git"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -f ''${gitfile} ]]; then
|
if [[ ! -f ''${gitfile} ]]; then
|
||||||
echo "file ''${gitfile} does not exist"
|
echo "file ''${gitfile} does not exist"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
gitdir=$(grep "gitdir:" ''${gitfile} | cut -d: -f2 | xargs)
|
gitdir=$(grep "gitdir:" ''${gitfile} | cut -d: -f2 | xargs)
|
||||||
rel_gitdir=$(realpath -s --relative-to=. ''${gitdir})
|
rel_gitdir=$(realpath -s --relative-to=. ''${gitdir})
|
||||||
@ -123,4 +123,3 @@
|
|||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,4 +62,3 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
{
|
{
|
||||||
programs.zsh.initExtra = ''
|
programs.zsh.initExtra = ''
|
||||||
if [ -f $HOME/.nix-profile/etc/profile.d/nix.sh ];
|
if [ -f $HOME/.nix-profile/etc/profile.d/nix.sh ];
|
||||||
then
|
then
|
||||||
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function sc-log {
|
function sc-log {
|
||||||
@ -24,16 +24,16 @@
|
|||||||
|
|
||||||
if [ -z ''${update_file} ]; then
|
if [ -z ''${update_file} ]; then
|
||||||
update_file=$(find build/tmp/deploy/images -name "*.swu" -type f | fzf --select-1)
|
update_file=$(find build/tmp/deploy/images -name "*.swu" -type f | fzf --select-1)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z ''${update_file} ]; then
|
if [ -z ''${update_file} ]; then
|
||||||
echo "no file selected"
|
echo "no file selected"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f ''${update_file} ]; then
|
if [ ! -f ''${update_file} ]; then
|
||||||
echo "file \"''${update_file}\" does not exist"
|
echo "file \"''${update_file}\" does not exist"
|
||||||
return 2
|
return 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "flashing ''${update_file} to device..."
|
echo "flashing ''${update_file} to device..."
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ pkgs, theme, ... }:
|
{ pkgs, theme, ... }:
|
||||||
{
|
{
|
||||||
# symlink for a stable path
|
# symlink for a stable path
|
||||||
home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb;
|
home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
@ -16,14 +16,14 @@
|
|||||||
vim-bbye
|
vim-bbye
|
||||||
ansible-vim
|
ansible-vim
|
||||||
|
|
||||||
# ui
|
# ui
|
||||||
dressing-nvim
|
dressing-nvim
|
||||||
|
|
||||||
# session handling
|
# session handling
|
||||||
project-nvim
|
project-nvim
|
||||||
auto-session
|
auto-session
|
||||||
|
|
||||||
# escape handling
|
# escape handling
|
||||||
better-escape-nvim
|
better-escape-nvim
|
||||||
|
|
||||||
nvim-treesitter.withAllGrammars
|
nvim-treesitter.withAllGrammars
|
||||||
@ -82,7 +82,7 @@
|
|||||||
nvim-dap
|
nvim-dap
|
||||||
nvim-dap-ui
|
nvim-dap-ui
|
||||||
|
|
||||||
# neorg
|
# neorg
|
||||||
neorg
|
neorg
|
||||||
neorg-telescope
|
neorg-telescope
|
||||||
];
|
];
|
||||||
@ -169,5 +169,3 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -5,4 +5,3 @@
|
|||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,4 +6,3 @@
|
|||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user