mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
27 lines
534 B
JavaScript
27 lines
534 B
JavaScript
/* eslint-env node */
|
|
require('@rushstack/eslint-patch/modern-module-resolution')
|
|
|
|
module.exports = {
|
|
root: true,
|
|
'extends': [
|
|
'plugin:vue/vue3-essential',
|
|
'eslint:recommended',
|
|
'@vue/eslint-config-typescript',
|
|
'@vue/eslint-config-prettier/skip-formatting'
|
|
],
|
|
overrides: [
|
|
{
|
|
files: [
|
|
'e2e/**/*.{test,spec}.{js,ts,jsx,tsx}'
|
|
],
|
|
'extends': [
|
|
'plugin:playwright/recommended'
|
|
]
|
|
}
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest'
|
|
},
|
|
ignorePatterns: ["**/*.js"]
|
|
}
|