mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-17 13:06:13 +01:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
import pluginJs from '@eslint/js'
|
|
import globals from 'globals'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default [
|
|
{ files: ['**/*.{js,mjs,cjs,ts}'] },
|
|
{ languageOptions: { globals: globals.browser } },
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
]
|
|
|