Skip to content

Commit

Permalink
Mirabuf Parser and Initial React UI (#966)
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBarclay authored Mar 16, 2024
2 parents b03dae4 + 403a157 commit d15239d
Show file tree
Hide file tree
Showing 109 changed files with 9,931 additions and 634 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ESLintFormat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Format Validation (ESLint)

on:
workflow_dispatch: {}
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
runFormatValidationScript:
name: Run ESLint Format Validation
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: JavaScript Setup
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Dependencies
run: |
cd fission
npm install
- name: Linter
id: linter-validation
run: |
cd fission
npm run lint
continue-on-error: true
- name: Prettier
id: prettier-validation
run: |
cd fission
npm run prettier
continue-on-error: true
- name: Check Success
run: |
if [ ${{ steps.linter-validation.outcome }} == "success" ]; then
echo "Format Validation Passed"
else
echo "Format Validation Failed"
exit 1
fi
8 changes: 8 additions & 0 deletions engine/Assets/Scripts/CEF.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fission/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
ignorePatterns: ['dist', '.eslintrc.cjs', 'src/proto/mirabuf.*', 'src/samples/*'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
Expand Down
Binary file added fission/bun.lockb
Binary file not shown.
5 changes: 3 additions & 2 deletions fission/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/synthesis-logo.svg" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Fission | Synthesis</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading

0 comments on commit d15239d

Please sign in to comment.