chore: scaffold astro frontend with static output
This commit is contained in:
parent
6bec95a563
commit
f1a0d1ddef
8 changed files with 10277 additions and 0 deletions
13
frontend/eslint.config.js
Normal file
13
frontend/eslint.config.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import tseslint from 'typescript-eslint';
|
||||
|
||||
export default tseslint.config(
|
||||
{ ignores: ['dist', 'node_modules', '.astro'] },
|
||||
...tseslint.configs.recommended,
|
||||
{
|
||||
rules: {
|
||||
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
||||
'@typescript-eslint/no-explicit-any': 'error',
|
||||
'no-console': ['warn', { allow: ['warn', 'error'] }],
|
||||
},
|
||||
},
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue