mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import eslint from '@eslint/js'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default [
|
|
...tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended),
|
|
{
|
|
ignores: ['node_modules/', 'build/', 'dist/', 'gen/'],
|
|
},
|
|
]
|