mirror of
https://github.com/chenasraf/github-repos-astro-loader.git
synced 2026-05-18 01:38:59 +00:00
20 lines
544 B
JavaScript
20 lines
544 B
JavaScript
import eslint from '@eslint/js'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default [
|
|
...tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended),
|
|
{
|
|
rules: {
|
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
|
|
],
|
|
},
|
|
},
|
|
{
|
|
ignores: ['node_modules/', 'build/', 'dist/', 'gen/'],
|
|
},
|
|
]
|