Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 0 additions & 120 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 24

- name: Install Node.js dependencies
run: npm ci
Expand Down
4 changes: 3 additions & 1 deletion .stylelintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ module.exports = {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: ["function", "if", "each", "include", "mixin"],
ignoreAtRules: ["function", "if", "each", "include", "mixin", "use"],
},
],
"no-invalid-position-at-import-rule": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
},
};
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine
FROM node:24-alpine

Check notice

Code scanning / Security Audit for Infrastructure

Ensure that HEALTHCHECK instructions have been added to container images. Note

Ensure that HEALTHCHECK instructions have been added to container images.

ENV WORKDIR=/qboard
ENV USER=qboard
Expand Down
25 changes: 25 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// @ts-check

import eslint from "@eslint/js";
import prettierPluginRecommended from "eslint-plugin-prettier/recommended";
import importPlugin from "eslint-plugin-import";
import reactPlugin from "eslint-plugin-react";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";

export default defineConfig(
eslint.configs.recommended,
{
settings: {
react: {
version: "detect",
},
},
},
reactPlugin.configs.flat.recommended,
reactPlugin.configs.flat["jsx-runtime"],
tseslint.configs.recommended,
importPlugin.flatConfigs.recommended,
importPlugin.flatConfigs.typescript,
prettierPluginRecommended
);
1 change: 1 addition & 0 deletions src/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
<canvas id="QBoard" width="1600" height="900"></canvas>
</div>
<div id="Overlay"></div>
<script type="module" src="./src/index.jsx"></script>
</body>
</html>
16 changes: 0 additions & 16 deletions nwb.config.js

This file was deleted.

Loading
Loading