mirror of
https://github.com/chenasraf/venom.git
synced 2026-05-17 17:28:08 +00:00
19 lines
515 B
JavaScript
19 lines
515 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-unused-vars': [
|
|
'warn',
|
|
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
|
|
],
|
|
},
|
|
},
|
|
{
|
|
ignores: ['node_modules/', 'build/', 'dist/', 'gen/', 'scaffold.config.js'],
|
|
},
|
|
]
|