diff --git a/cypress/integration/example.spec.ts b/cypress/integration/example.spec.ts index 3130c00..6e1bb87 100644 --- a/cypress/integration/example.spec.ts +++ b/cypress/integration/example.spec.ts @@ -1,8 +1,8 @@ // https://docs.cypress.io/api/introduction/api.html -describe("My First Test", () => { - it("visits the app root url", () => { - cy.visit("/"); - cy.contains("h1", "You did it!"); +describe('My First Test', () => { + it('visits the app root url', () => { + cy.visit('/'); + cy.contains('h1', 'You did it!'); }); }); diff --git a/cypress/support/index.ts b/cypress/support/index.ts index d076cec..37a498f 100644 --- a/cypress/support/index.ts +++ b/cypress/support/index.ts @@ -14,7 +14,7 @@ // *********************************************************** // Import commands.js using ES2015 syntax: -import "./commands"; +import './commands'; // Alternatively you can use CommonJS syntax: // require('./commands') diff --git a/eslint.config.ts b/eslint.config.ts index 5381806..3578bce 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -2,7 +2,6 @@ import { globalIgnores } from 'eslint/config' import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript' import * as pluginVue from 'eslint-plugin-vue' import * as pluginVitest from '@vitest/eslint-plugin' -import skipFormatting from '@vue/eslint-config-prettier/skip-formatting' // To allow more languages other than `ts` in `.vue` files, uncomment the following lines: // import { configureVueProject } from '@vue/eslint-config-typescript' @@ -24,5 +23,9 @@ export default defineConfigWithVueTs( ...pluginVitest.default.configs.recommended, files: ['src/**/__tests__/*'], }, - skipFormatting, + { + rules: { + 'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], + }, + }, ) diff --git a/package.json b/package.json index cd5e468..5dd91da 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "build": "vue-tsc --noEmit -p tsconfig.app.json --composite false && vite build", "test:unit": "vitest --environment jsdom", "test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'", - "lint": "eslint . --fix", + "lint": "eslint .", "dev": "vite", "preview": "vite preview --port 5050", "test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'" @@ -46,7 +46,6 @@ "@vitejs/plugin-vue-jsx": "^5.0.0", "@vitest/eslint-plugin": "^1.2.7", "@vue/compiler-sfc": "^3.5.17", - "@vue/eslint-config-prettier": "^10.2.0", "@vue/eslint-config-typescript": "^14.5.1", "@vue/test-utils": "^2.4.6", "@vue/tsconfig": "^0.7.0", @@ -57,7 +56,6 @@ "jiti": "^2.4.2", "jsdom": "^26.1.0", "npm-run-all2": "^8.0.4", - "prettier": "^3.5.3", "sass": "^1.89.2", "start-server-and-test": "^2.0.12", "typescript": "^5.8.3", diff --git a/src/App.vue b/src/App.vue index c1addf2..111610c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,15 +1,15 @@ diff --git a/src/components/ServerStatusOverlay.vue b/src/components/ServerStatusOverlay.vue index c77202b..cbdbdc0 100644 --- a/src/components/ServerStatusOverlay.vue +++ b/src/components/ServerStatusOverlay.vue @@ -1,8 +1,8 @@ diff --git a/src/components/automation/LogViewer.vue b/src/components/automation/LogViewer.vue index 01a570b..44378ca 100644 --- a/src/components/automation/LogViewer.vue +++ b/src/components/automation/LogViewer.vue @@ -1,6 +1,6 @@