Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
chore: update ignores, add preload to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler committed Apr 6, 2024
1 parent 9083cf4 commit a402734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import globals from 'globals';
export default [
// Ignored dirs
{
ignores: ['**/dist/**/*', '**/bundle/**/*', '**/static/**/*', '.vscode'],
ignores: ['**/out/**/*', '**/bundle/**/*', '**/static/**/*', '.vscode'],
},
// Ignored files
{
ignores: ['vitest.config.ts', 'eslint.config.js', 'test/features/lists/*.spec.tsx'],
ignores: ['vite.config.ts', 'vitest.config.ts', 'eslint.config.js', 'test/features/lists/*.spec.tsx'],
},
// All files
{
Expand Down Expand Up @@ -51,7 +51,7 @@ export default [
},
// Electron renderer process files
{
files: ['src/renderer/*.{ts,tsx}'],
files: ['src/renderer/*.{ts,tsx}', 'src/preload/*.ts'],
languageOptions: {
globals: {
...globals.browser,
Expand Down

0 comments on commit a402734

Please sign in to comment.