mirror of
https://github.com/enso-org/enso.git
synced 2024-12-30 03:13:27 +03:00
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
|
import { FlatCompat } from '@eslint/eslintrc'
|
||
|
import eslintJs from '@eslint/js'
|
||
|
import * as path from 'node:path'
|
||
|
import * as url from 'node:url'
|
||
|
|
||
|
const compat = new FlatCompat()
|
||
|
|
||
|
const DIR_NAME = path.dirname(url.fileURLToPath(import.meta.url))
|
||
|
|
||
|
const conf = [
|
||
|
{
|
||
|
ignores: ['rust-ffi/pkg', 'dist'],
|
||
|
},
|
||
|
...compat.extends('plugin:vue/vue3-recommended'),
|
||
|
eslintJs.configs.recommended,
|
||
|
...compat.extends('@vue/eslint-config-typescript', '@vue/eslint-config-prettier'),
|
||
|
{
|
||
|
// files: ['{**,src}/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}'],
|
||
|
languageOptions: {
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: DIR_NAME,
|
||
|
ecmaVersion: 'latest',
|
||
|
project: ['./tsconfig.app.json', './tsconfig.node.json', './tsconfig.vitest.json'],
|
||
|
},
|
||
|
},
|
||
|
rules: {
|
||
|
camelcase: [1, { ignoreImports: true }],
|
||
|
'no-inner-declarations': 0,
|
||
|
'vue/v-on-event-hyphenation': [2, 'never'],
|
||
|
'@typescript-eslint/no-unused-vars': [
|
||
|
1,
|
||
|
{
|
||
|
varsIgnorePattern: '^_',
|
||
|
argsIgnorePattern: '^_',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
]
|
||
|
|
||
|
export default conf
|