Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update ESLint configuration and remove unused files #142

Merged
merged 9 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/demo
/dist
/dist
/tests
*.config.*
/scripts
2 changes: 1 addition & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extends:
parserOptions:
ecmaVersion: 2020
sourceType: module
project: ./eslint.tsconfig.json
project: ./tsconfig.json
plugins:
- '@typescript-eslint'
- deprecation
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DS_Store
node_modules
dist
/dist
.env
package-lock.json
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/demo
pnpm-lock.yaml
/demo
1 change: 1 addition & 0 deletions demo/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.config.*
2 changes: 1 addition & 1 deletion demo/.eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extends:
parserOptions:
ecmaVersion: 2020
sourceType: module
project: ./eslint.tsconfig.json
project: ./tsconfig.json
extraFileExtensions:
- .svelte
plugins:
Expand Down
2 changes: 1 addition & 1 deletion demo/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build
/build
.svelte-kit
7 changes: 0 additions & 7 deletions demo/eslint.tsconfig.json

This file was deleted.

4 changes: 2 additions & 2 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"dev": "vite dev",
"build": "vite build",
"preview": "npm run build && vite preview",
"lint": "npx eslint . && npm run check",
"lint": "npm run check && npx eslint .",
"format": "npx prettier --write . --plugin prettier-plugin-svelte .",
"check": "export PUBLIC_SENTRY_DSN= && svelte-kit sync && npx svelte-check"
"check": "svelte-kit sync && npx svelte-check"
},
"devDependencies": {
"@jill64/svelte-toast": "1.0.1",
Expand Down
7 changes: 0 additions & 7 deletions eslint.tsconfig.json

This file was deleted.

6 changes: 0 additions & 6 deletions rsac.yml

This file was deleted.

Loading