Skip to content

Commit

Permalink
fix: fix settings
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Jul 24, 2024
1 parent 04cde50 commit 69fa60d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
# platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [windows-latest]
runs-on: ${{ matrix.platform }}

steps:
Expand Down
4 changes: 3 additions & 1 deletion .prettierrc.cjs → .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
//! NOTE: If this file is not in the root directory, VSCode's prettier extension will not reflect this setting.
//! Use prettier because biome is fast but does not yet support yaml formatting.
// @ts-check

/** @type {import('prettier').Options} */
module.exports = {
export default {
semi: true,
singleQuote: true,
printWidth: 120,
Expand Down
6 changes: 5 additions & 1 deletion gui/frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
// For compatibility with Biome (fast linter&fmt made by Rust), the following settings are made
// to compensate for missing functions of Biome with eslint.

/** @type {import('eslint/lib/shared/types').ConfigData} */
// @ts-check

/** @typedef {import('eslint').ESLint.ConfigData} ConfigData */

/** @type {ConfigData} */
module.exports = {
extends: ['next/core-web-vitals'],
settings: {
Expand Down

0 comments on commit 69fa60d

Please sign in to comment.