diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index 7c48ad6..33df8d8 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -19,4 +19,3 @@ jobs: - run: npm ci - run: npm run build --if-present - run: npm test - - run: npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d6b548..c41d085 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,4 +19,3 @@ jobs: - run: npm ci - run: npm run build --if-present - run: npm test - - run: npm run lint diff --git a/.vscode/settings.json b/.vscode/settings.json index 65fe597..d46602a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ { "vitest.commandLine": "npx vitest", "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit" + "source.fixAll.eslint": true }, "editor.defaultFormatter": "esbenp.prettier-vscode", "git.ignoreLimitWarning": true, diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 4fc4ea1..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributing to Profectus - -Thank you for considering contributing to Profectus! We appreciate your interest in improving our project. Please take a moment to review the following guidelines to streamline the contribution process. - -## Getting Started - -For detailed instructions on setting up local development environment, please refer to the [Setup Guide](https://moddingtree.com/guide/getting-started/setup). - -## Issue Reporting - -If you encounter a bug or have a suggestion for improvement, please open an issue on Incremental Social. Provide as much detail as possible, including an example repo or steps to reproduce the issue if applicable. - -## Contributing - -Make sure to open your PR on [Incremental Social](https://code.incremental.social/profectus/Profectus) - the GitHub repo is just a mirror! - -### Code Review - -All PRs must be reviewed and approved by at least one of the project maintainers before merging. Please be patient during the review process and be open to feedback. - -### Testing - -Ensure that your changes pass all existing tests and, if applicable, add new tests to cover the changes you've made. Run `npm run test` to run all the tests. - -### Code Style - -We use ESLint and Prettier to enforce consistent code style throughout the project. Before submitting a PR, run `npm run lint:fix` to automatically fix any linting issues. - -## License - -By contributing to Profectus, you agree that your contributions will be licensed under the project's [LICENSE](./LICENSE). diff --git a/package-lock.json b/package-lock.json index d3c50e2..f747006 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,6 @@ "is-plain-object": "^5.0.0", "lz-string": "^1.4.4", "nanoevents": "^6.0.2", - "unofficial-galaxy-sdk": "git+https://code.incremental.social/thepaperpilot/unofficial-galaxy-sdk.git#1.0.1", "vite": "^2.9.12", "vite-plugin-pwa": "^0.12.0", "vite-tsconfig-paths": "^3.5.0", @@ -6879,10 +6878,6 @@ "node": ">= 4.0.0" } }, - "node_modules/unofficial-galaxy-sdk": { - "version": "1.0", - "resolved": "git+https://code.incremental.social/thepaperpilot/unofficial-galaxy-sdk.git#97d6da6636a2fc38c14aa893d4b336ccc22314af" - }, "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", diff --git a/package.json b/package.json index eeeecf0..3c1c415 100644 --- a/package.json +++ b/package.json @@ -9,9 +9,7 @@ "preview": "vite preview", "test": "vitest run", "testw": "vitest", - "serve": "vite preview --host", - "lint": "eslint src --max-warnings 0", - "lint:fix": "eslint --fix --max-warnings 0 src" + "serve": "vite preview --host" }, "dependencies": { "@fontsource/material-icons": "^4.5.4", @@ -29,7 +27,6 @@ "is-plain-object": "^5.0.0", "lz-string": "^1.4.4", "nanoevents": "^6.0.2", - "unofficial-galaxy-sdk": "git+https://code.incremental.social/thepaperpilot/unofficial-galaxy-sdk.git#1.0.1", "vite": "^2.9.12", "vite-plugin-pwa": "^0.12.0", "vite-tsconfig-paths": "^3.5.0", diff --git a/src/App.vue b/src/App.vue index 7e7a0aa..6a365ef 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,7 +8,6 @@ - @@ -17,11 +16,10 @@ diff --git a/src/components/saves/Save.vue b/src/components/Save.vue similarity index 75% rename from src/components/saves/Save.vue rename to src/components/Save.vue index 8c1809b..77d2988 100644 --- a/src/components/saves/Save.vue +++ b/src/components/Save.vue @@ -1,7 +1,7 @@