1
Fork 0

Compare commits

...

12 Commits
0.1.2 ... main

Author SHA1 Message Date
Bauke 7b2e19ea71
Add Nix flake and direnv files. 2024-01-26 19:46:26 +01:00
Bauke 50b6d4623e
Version 0.1.5! 2024-01-15 13:51:31 +01:00
Bauke 46b0eb9031
Update all dependencies. 2024-01-15 13:47:00 +01:00
Bauke f0376ab2c4
Disable the eslint complexity rule. 2024-01-15 13:41:10 +01:00
Bauke 0a72ce2a44
Version 0.1.4! 2023-07-17 00:31:28 +02:00
Bauke de2c4138b9
Update dependencies. 2023-07-17 00:30:36 +02:00
Bauke b33d456dd4
Version 0.1.3! 2023-07-04 00:02:29 +02:00
Bauke 9309dad020
Update all dependencies. 2023-07-03 23:59:24 +02:00
Bauke 7a29bba1fc
Update all dependencies. 2023-06-06 14:19:35 +02:00
Bauke 3b265df2f8
Remove the deprecated string-quotes rule. 2023-06-06 14:19:23 +02:00
Bauke 6fdc66e727
Disable no-await-in-loop. 2023-06-06 14:12:58 +02:00
Bauke 9069280c83
Update turbo. 2023-06-04 21:13:58 +02:00
14 changed files with 2452 additions and 1829 deletions

3
.envrc Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
use flake

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules/
.direnv/
.turbo/
node_modules/

5
Makefile.toml Normal file
View File

@ -0,0 +1,5 @@
# Run the turbo lint task.
[tasks.lint]
clear = true
command = "turbo"
args = ["run", "lint"]

59
flake.lock Normal file
View File

@ -0,0 +1,59 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1705309234,
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1706173671,
"narHash": "sha256-lciR7kQUK2FCAYuszyd7zyRRmTaXVeoZsCyK6QFpGdk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4fddc9be4eaf195d631333908f2a454b03628ee5",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

13
flake.nix Normal file
View File

@ -0,0 +1,13 @@
{
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}

View File

@ -10,6 +10,6 @@
"lint": "turbo run lint"
},
"devDependencies": {
"turbo": "^1.6.3"
"turbo": "^1.10.7"
}
}

View File

@ -38,6 +38,8 @@
}
],
"rules": {
"complexity": "off",
"no-await-in-loop": "off",
"quotes": [
"error",
"double"

View File

@ -1,7 +1,7 @@
{
"name": "@bauke/eslint-config",
"description": "Shareable ESLint configuration.",
"version": "0.1.2",
"version": "0.1.5",
"license": "Unlicense",
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
"type": "module",
@ -10,15 +10,15 @@
"access": "public"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.45.0",
"eslint": ">=8.28.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-mdx": "^2.0.5"
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.1",
"eslint-plugin-mdx": "^3.1.5"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.45.0",
"eslint": ">=8.28.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-mdx": "^2.0.5"
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-astro": "^0.31.1",
"eslint-plugin-mdx": "^3.1.5"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "@bauke/prettier-config",
"description": "Shareable Prettier configuration.",
"version": "0.1.2",
"version": "0.1.5",
"license": "Unlicense",
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
"type": "module",
@ -10,9 +10,9 @@
"access": "public"
},
"devDependencies": {
"prettier-plugin-astro": "^0.7.0"
"prettier-plugin-astro": "^0.12.3"
},
"peerDependencies": {
"prettier-plugin-astro": "^0.7.0"
"prettier-plugin-astro": "^0.12.3"
}
}

View File

@ -1,7 +1,7 @@
{
"name": "@bauke/stylelint-config",
"description": "Shareable Stylelint configuration.",
"version": "0.1.2",
"version": "0.1.5",
"license": "Unlicense",
"repository": "https://git.bauke.xyz/Bauke/shareable-configs",
"type": "module",
@ -10,11 +10,11 @@
"access": "public"
},
"devDependencies": {
"stylelint": ">=14.15.0",
"stylelint-config-standard-scss": "^6.1.0"
"stylelint": "^16.1.0",
"stylelint-config-standard-scss": "^13.0.0"
},
"peerDependencies": {
"stylelint": ">=14.15.0",
"stylelint-config-standard-scss": "^6.1.0"
"stylelint": "^16.1.0",
"stylelint-config-standard-scss": "^13.0.0"
}
}

View File

@ -4,7 +4,6 @@
"stylelint-config-standard-scss"
],
"rules": {
"no-descending-specificity": null,
"string-quotes": "double"
"no-descending-specificity": null
}
}

View File

@ -9,8 +9,8 @@
"@bauke/eslint-config": "workspace:*",
"@bauke/prettier-config": "workspace:*",
"@bauke/stylelint-config": "workspace:*",
"stylelint": "^14.15.0",
"xo": "^0.53.1"
"stylelint": "^16.1.0",
"xo": "^0.56.0"
},
"prettier": "@bauke/prettier-config",
"stylelint": {

File diff suppressed because it is too large Load Diff

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
# Uncomment turbo when the build failures are fixed.
packages = [ cargo-make nodejs nodePackages.pnpm /*turbo*/ ];
}