HumanBreak/eslint.config.js

81 lines
2.3 KiB
JavaScript

import eslint from '@eslint/js';
import globals from 'globals';
import tseslint from 'typescript-eslint';
import eslintPluginVue from 'eslint-plugin-vue';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import eslintPluginReact from 'eslint-plugin-react';
export default tseslint.config(
{
ignores: ['node_modules', 'dist', 'public']
},
eslint.configs.recommended,
...tseslint.configs.recommended,
...eslintPluginVue.configs['flat/recommended'],
eslintPluginPrettierRecommended,
{
files: ['**/*.{js,mjs,cjs,vue}'],
rules: {
'no-console': 'warn',
eqeqeq: ['error', 'always']
}
},
{
languageOptions: {
globals: {
...globals.browser,
wx: true
}
}
},
{
files: ['**/*.vue'],
languageOptions: {
parserOptions: {
parser: tseslint.parser,
ecmaVersion: 'latest',
ecmaFeatures: {
jsx: true
}
}
},
rules: {
'vue/no-mutating-props': [
'error',
{
shallowOnly: true
}
]
}
},
{
files: ['**/*.{ts,tsx,vue}'],
plugins: {
react: eslintPluginReact
},
rules: {
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true
}
],
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-this-alias': 'off',
'no-console': 'warn',
'vue/multi-word-component-names': 'off',
eqeqeq: ['error', 'always'],
'react/jsx-boolean-value': ['error', 'never']
}
}
);