mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-06 17:14:27 +08:00
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import js from '@eslint/js';
|
|
import typescriptParser from '@typescript-eslint/parser';
|
|
import astroEslintParser from 'astro-eslint-parser';
|
|
import eslintPluginAstro from 'eslint-plugin-astro';
|
|
import globals from 'globals';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default [
|
|
js.configs.recommended,
|
|
...eslintPluginAstro.configs['flat/recommended'],
|
|
...tseslint.configs.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.astro'],
|
|
languageOptions: {
|
|
parser: astroEslintParser,
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
extraFileExtensions: ['.astro'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.{js,jsx,astro}'],
|
|
rules: {
|
|
'no-mixed-spaces-and-tabs': ['error', 'smart-tabs'],
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.{ts,tsx}', '**/*.astro/*.js'],
|
|
languageOptions: {
|
|
parser: typescriptParser,
|
|
},
|
|
rules: {
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
},
|
|
},
|
|
{
|
|
ignores: ['dist', 'node_modules', '.github', 'types.generated.d.ts', '.astro'],
|
|
},
|
|
];
|