56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
import globals from 'globals';
|
|
import js from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
|
|
export default tseslint.config(
|
|
// Global ignores first - these apply to all configurations
|
|
{
|
|
ignores: [
|
|
'node_modules/',
|
|
'dist/',
|
|
'.output/',
|
|
'.wxt/',
|
|
'logs/',
|
|
'*.log',
|
|
'.cache/',
|
|
'.temp/',
|
|
'.idea/',
|
|
'.DS_Store',
|
|
'Thumbs.db',
|
|
'*.zip',
|
|
'*.tar.gz',
|
|
'stats.html',
|
|
'stats-*.json',
|
|
'pnpm-lock.yaml',
|
|
'**/workers/**',
|
|
'app/**/workers/**',
|
|
'packages/**/workers/**',
|
|
'test-inject-script.js',
|
|
],
|
|
},
|
|
|
|
js.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
files: ['app/**/*.{js,jsx,ts,tsx}', 'packages/**/*.{js,jsx,ts,tsx}'],
|
|
ignores: ['**/workers/**'], // Additional ignores for this specific config
|
|
languageOptions: {
|
|
ecmaVersion: 2021,
|
|
sourceType: 'module',
|
|
parser: tseslint.parser,
|
|
globals: {
|
|
...globals.node,
|
|
...globals.es2021,
|
|
},
|
|
},
|
|
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-require-imports': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
eslintConfigPrettier,
|
|
);
|