You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
422 B
19 lines
422 B
1 month ago
|
import globals from "globals"
|
||
|
import pluginJs from "@eslint/js"
|
||
|
import pluginVue from "eslint-plugin-vue"
|
||
|
import pluginPrettierRecommended from "eslint-plugin-prettier/recommended"
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
files: ["**/*.{js,mjs,cjs,vue}"],
|
||
|
},
|
||
|
{
|
||
|
languageOptions: {
|
||
|
globals: globals.browser,
|
||
|
},
|
||
|
},
|
||
|
pluginJs.configs.recommended,
|
||
|
...pluginVue.configs["flat/essential"],
|
||
|
pluginPrettierRecommended,
|
||
|
]
|