diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 877dd203..3720f478 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,22 +1,27 @@ module.exports = { - root: true, - parser: "@typescript-eslint/parser", - parserOptions: { - "project": "./tsconfig.json" - }, - ignorePatterns: ['*.test.ts', '.eslintrc.cjs', 'webpack.config.cjs', '*.js'], - overrides: [{ - files: ['*.ts', '*.tsx'], - }], - plugins: [ - "@typescript-eslint", - ], - extends: [ - "eslint:recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended" - ], - rules: { - '@typescript-eslint/no-floating-promises': 'error', - } - } \ No newline at end of file + root: true, + parser: "vue-eslint-parser", + parserOptions: { + "project": "./tsconfig.json" + }, + ignorePatterns: ['*.test.ts', '.eslintrc.cjs', 'webpack.config.cjs', '*.js'], + overrides: [{ + files: ['*.ts', '*.tsx', "*.vue"], + }], + plugins: [ + "@typescript-eslint", + + ], + extends: [ + "eslint:recommended", + 'plugin:vue/essential', + '@vue/typescript', + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended" + ], + rules: { + '@typescript-eslint/no-floating-promises': 'error', + "vue/no-multiple-template-root": "off", + "vue/no-v-for-template-key": "off", + } +} \ No newline at end of file diff --git a/.phan/config.php b/.phan/config.php index ea554725..003d0c28 100644 --- a/.phan/config.php +++ b/.phan/config.php @@ -41,7 +41,7 @@ return [ 'hwe/b_dipcenter.php', 'hwe/b_diplomacy.php', 'hwe/b_genList.php', - 'hwe/b_inheritPoint.php', + 'hwe/v_inheritPoint.php', 'hwe/b_myBossInfo.php', 'hwe/b_myCityInfo.php', 'hwe/b_myGenInfo.php', diff --git a/hwe/scss/bootstrap5.scss b/hwe/scss/bootstrap5.scss new file mode 100644 index 00000000..9876a6c9 --- /dev/null +++ b/hwe/scss/bootstrap5.scss @@ -0,0 +1,7 @@ + +$font-family-sans-serif: '나눔 고딕', 'Nanum Gothic'; +$body-bg: #000; + +@import "../../node_modules/bootswatch/dist/darkly/_variables.scss"; +@import "../../node_modules/bootstrap5/scss/bootstrap.scss"; +@import "../../node_modules/bootswatch/dist/darkly/_bootswatch.scss"; \ No newline at end of file diff --git a/hwe/scss/game_bg.scss b/hwe/scss/game_bg.scss index 7c4197f6..c76d8b0f 100644 --- a/hwe/scss/game_bg.scss +++ b/hwe/scss/game_bg.scss @@ -17,6 +17,10 @@ table.tb_layout { word-break: break-all; } +html, body{ + font-size: 13px; +} + .tb_layout td, .tb_layout th { border: solid 1px gray; diff --git a/hwe/templates/commandButton.php b/hwe/templates/commandButton.php index 045813af..27ca81aa 100644 --- a/hwe/templates/commandButton.php +++ b/hwe/templates/commandButton.php @@ -16,7 +16,7 @@ - + diff --git a/hwe/ts/components/TopBackBar.vue b/hwe/ts/components/TopBackBar.vue index 10ae00f6..72a6d348 100644 --- a/hwe/ts/components/TopBackBar.vue +++ b/hwe/ts/components/TopBackBar.vue @@ -4,6 +4,7 @@