diff --git a/.bazelignore b/.bazelignore new file mode 100644 index 00000000..c2321aaa --- /dev/null +++ b/.bazelignore @@ -0,0 +1 @@ +gui/node_modules \ No newline at end of file diff --git a/.clang-tidy b/.clang-tidy index 20a5c794..11156821 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,6 +1,8 @@ HeaderFilterRegex: \./.+ Checks: '*, + -cppcoreguidelines-init-variables, + -google-readability-todo, -cert-err58-cpp, -cppcoreguidelines-avoid-non-const-global-variables, -cppcoreguidelines-owning-memory, diff --git a/.trunk/.gitignore b/.trunk/.gitignore index 7feb17f2..cc6f71b1 100644 --- a/.trunk/.gitignore +++ b/.trunk/.gitignore @@ -1 +1,3 @@ *out +external +logs \ No newline at end of file diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 89659a07..2be3b08b 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -1,6 +1,6 @@ version: 0.1 cli: - version: 0.13.2-beta + version: 0.14.1-beta repo: repo: host: github.com @@ -28,4 +28,4 @@ lint: - shellcheck@0.7.2 - shfmt@3.4.0 - rustfmt@1.58.1 - - eslint@8.19.0 + - eslint@8.19.0 \ No newline at end of file diff --git a/gui/tailwind.config.js b/gui/tailwind.config.js index 41def007..bd898e96 100644 --- a/gui/tailwind.config.js +++ b/gui/tailwind.config.js @@ -3,6 +3,7 @@ // SPDX-License-Identifier: GPL-3.0-only // +/** @type {import('tailwindcss').Config} */ module.exports = { purge: ["./src/**/*.{js,jsx,ts,tsx}"], plugins: [require("@tailwindcss/forms")],