Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into 2023-08-21_networ…
Browse files Browse the repository at this point in the history
…kmanager-dbus
  • Loading branch information
mcm001 committed Aug 31, 2023
2 parents f36de41 + 08892b9 commit 5fea1af
Show file tree
Hide file tree
Showing 55 changed files with 3,227 additions and 2,654 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@ jobs:
- name: Install Dependencies
run: npm ci

- name: Check Formatting
- name: Check Linting
run: npm run lint

- name: Check Formatting
run: npm run check-format
photon-build-examples:
runs-on: ubuntu-22.04
name: "Build Examples"
Expand Down
5 changes: 3 additions & 2 deletions photon-client/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"root": true,
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"plugin:vue/recommended",
"@vue/eslint-config-typescript/recommended"
"@vue/eslint-config-typescript",
"@vue/eslint-config-prettier/skip-formatting"
],
"rules": {
"quotes": ["error", "double"],
Expand Down
1 change: 1 addition & 0 deletions photon-client/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/assets/fonts/PromptRegular.ts
8 changes: 8 additions & 0 deletions photon-client/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": true,
"tabWidth": 2,
"singleQuote": false,
"printWidth": 120,
"trailingComma": "none"
}
Loading

0 comments on commit 5fea1af

Please sign in to comment.