Skip to content

Commit cc59e14

Browse files
committed
fix: fixed linting errors
1 parent 8e9f33d commit cc59e14

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

eslint.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export default defineConfig(
2727
rules: {
2828
// typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects.
2929
// see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors
30-
"no-undef": 'off'
31-
}
30+
'no-undef': 'off',
31+
},
3232
},
3333
{
3434
files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'],
@@ -38,8 +38,8 @@ export default defineConfig(
3838
projectService: true,
3939
extraFileExtensions: ['.svelte'],
4040
parser: ts.parser,
41-
svelteConfig
42-
}
43-
}
44-
}
41+
svelteConfig,
42+
},
43+
},
44+
},
4545
);

svelte.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ const config = {
1111
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
1313
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
14-
adapter: adapter()
15-
}
14+
adapter: adapter(),
15+
},
1616
};
1717

1818
export default config;

0 commit comments

Comments
 (0)