Fix initialization of eslint config
This commit is contained in:
parent
8ee4fd5b79
commit
4d5945ff50
@ -73,13 +73,13 @@
|
|||||||
|
|
||||||
devShells = nix.lib.forAllSystems (pkgs: {
|
devShells = nix.lib.forAllSystems (pkgs: {
|
||||||
default = nix.lib.mkDevenvShell {
|
default = nix.lib.mkDevenvShell {
|
||||||
|
inherit pkgs;
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
self = self;
|
self = self;
|
||||||
nixpkgs = pkgs;
|
nixpkgs = pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
pkgs = pkgs;
|
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
packages = [
|
packages = [
|
||||||
@ -88,7 +88,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
enterShell = ''
|
enterShell = ''
|
||||||
cp ${nix.lib.eslint-config-file} ./app/frontend/eslint.shared.mjs
|
cp -f ${nix.lib.eslint-config-file} ./app/frontend/eslint.shared.mjs
|
||||||
'';
|
'';
|
||||||
|
|
||||||
scripts = {
|
scripts = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user