first commit.

This commit is contained in:
2025-06-17 14:03:55 +09:00
commit ddae42619e
45 changed files with 13680 additions and 0 deletions

17
eslint.config.mjs Normal file
View File

@ -0,0 +1,17 @@
import presetsPrettier from '@cybozu/eslint-config/flat/presets/react-typescript-prettier.js';
import globals from 'globals';
/** @type {import("eslint").Linter.Config[]} */
export default [
...presetsPrettier,
{
languageOptions: {
globals: {
...globals.node,
},
},
rules: {
'spaced-comment': ['error', 'always', { markers: ['/'] }],
},
},
];