Skip to content

Commit b79cc39

Browse files
committed
chore: wip
1 parent ebe002c commit b79cc39

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

resources/components/Dashboard/Deployments/ActivityFeed.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
const githubStore = useGitStore()
3-
const github = useGithub()
3+
const github = useGitHub()
44
55
onMounted(async () => {
66
await githubStore.fetchCommits()

resources/views/dashboard/deployments/[id].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
const gitStore = useGitStore()
3-
const github = useGithub()
3+
const github = useGitHub()
44
const route = useRoute()
55
66
onMounted(async () => {

storage/framework/ide/vscode/.vscode/settings.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
11
{
2+
// TODO: temp until biome can handle SFCs
3+
"eslint.experimental.useFlatConfig": true,
4+
// Silent the stylistic rules in you IDE, but still auto fix them
5+
"eslint.rules.customizations": [
6+
{ "rule": "style/*", "severity": "off" },
7+
{ "rule": "format/*", "severity": "off" },
8+
{ "rule": "*-indent", "severity": "off" },
9+
{ "rule": "*-spacing", "severity": "off" },
10+
{ "rule": "*-spaces", "severity": "off" },
11+
{ "rule": "*-order", "severity": "off" },
12+
{ "rule": "*-dangle", "severity": "off" },
13+
{ "rule": "*-newline", "severity": "off" },
14+
{ "rule": "*quotes", "severity": "off" },
15+
{ "rule": "*semi", "severity": "off" },
16+
{ "rule": "no-undef", "severity": "off" }
17+
],
18+
19+
// Enable eslint for all supported languages
20+
"eslint.validate": [
21+
"vue"
22+
],
23+
224
// JavaScript
3-
"prettier.enable": false,
25+
"prettier.enable": false, // Disable the default formatter, use eslint instead
426
"editor.defaultFormatter": "biomejs.biome",
527
"editor.formatOnSave": false,
628
"editor.codeActionsOnSave": {
729
"quickfix.biome": "explicit",
30+
"source.fixAll.eslint": "explicit",
831
"source.organizeImports.biome": "explicit"
932
},
1033

0 commit comments

Comments
 (0)