mirror of
https://github.com/morgan9e/dash-to-panel
synced 2026-04-13 15:54:12 +09:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import globals from 'globals'
|
|
import pluginJs from '@eslint/js'
|
|
import eslintConfigPrettier from 'eslint-config-prettier'
|
|
|
|
export default [
|
|
{ languageOptions: { globals: globals.node } },
|
|
pluginJs.configs.recommended,
|
|
eslintConfigPrettier,
|
|
]
|