mirror of
https://github.com/RPCSX/RPCSX.github.io.git
synced 2026-01-31 01:05:21 +01:00
18 lines
391 B
JavaScript
18 lines
391 B
JavaScript
import js from '@eslint/js'
|
|
import eslintPluginVue from 'eslint-plugin-vue'
|
|
import ts from 'typescript-eslint'
|
|
|
|
export default ts.config(
|
|
js.configs.recommended,
|
|
...ts.configs.recommended,
|
|
...eslintPluginVue.configs['flat/recommended'],
|
|
{
|
|
files: ['*.vue', '**/*.vue'],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser'
|
|
}
|
|
}
|
|
}
|
|
)
|