Skip to content

Commit

Permalink
Coming back after 6 months
Browse files Browse the repository at this point in the history
Update dependencies
Minor refactors
Reset for redesign
  • Loading branch information
hopperelec committed May 15, 2024
1 parent f4f429b commit 2e6f966
Show file tree
Hide file tree
Showing 15 changed files with 1,649 additions and 2,196 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/node_modules/
/build/
/.svelte-kit/
/package-lock.json
/vite.config.ts.timestamp-*.mjs
23 changes: 10 additions & 13 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
/** @type { import("eslint").Linter.FlatConfig } */
module.exports = {
root: true,
extends: [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:svelte/prettier",
],

parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
parserOptions: {
project: "tsconfig.json",
sourceType: "module",
ecmaVersion: 2020,
extraFileExtensions: [".svelte"],
},
env: {
browser: true,
node: true,
es2020: true,
},
overrides: [
{
files: ["*.svelte"],
Expand All @@ -28,13 +36,6 @@ module.exports = {
parser: "espree",
},
],

env: {
browser: true,
node: true,
es2020: true,
},

settings: {
svelte: {
kit: {
Expand All @@ -44,8 +45,4 @@ module.exports = {
},
},
},

globals: {
NodeJS: true,
},
};
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:

- name: build
env:
GITHUB_PAGES: "true"
BASE_PATH: "/${{ github.event.repository.name }}"
STATIC: "true"
BASE_PATH: ${{ github.event.repository.name }}
PUBLIC_BASE_URL: ${{ steps.deployment.outputs.page_url }}
run: |
npm run build
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Linting

on:
push:
branches: "master"
pull_request:

jobs:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Prettier format-check

on:
push:
branches: "master"
pull_request:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/node_modules/
/build/
/.svelte-kit/
/package-lock.json
/vite.config.ts.timestamp-*.mjs
Loading

0 comments on commit 2e6f966

Please sign in to comment.