mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-17 05:51:36 +03:00
146 lines
3.1 KiB
JavaScript
146 lines
3.1 KiB
JavaScript
import js from '@eslint/js';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
import eslintPluginSvelte from 'eslint-plugin-svelte';
|
|
import globals from 'globals';
|
|
import svelteParser from 'svelte-eslint-parser';
|
|
import tsEslint from 'typescript-eslint';
|
|
import squareSvelteStore from 'eslint-plugin-square-svelte-store';
|
|
import pluginImportX from 'eslint-plugin-import-x';
|
|
|
|
export default tsEslint.config(
|
|
js.configs.recommended,
|
|
...tsEslint.configs.recommended,
|
|
...eslintPluginSvelte.configs['flat/recommended'],
|
|
eslintConfigPrettier,
|
|
...eslintPluginSvelte.configs['flat/prettier'],
|
|
{
|
|
files: ['**/*.svelte'],
|
|
languageOptions: {
|
|
ecmaVersion: 2021,
|
|
sourceType: 'module',
|
|
globals: {
|
|
...globals.node,
|
|
...globals.browser,
|
|
$state: 'readonly',
|
|
$derived: 'readonly',
|
|
$props: 'readonly',
|
|
$bindable: 'readonly',
|
|
$inspect: 'readonly',
|
|
$host: 'readonly'
|
|
},
|
|
parser: svelteParser,
|
|
parserOptions: {
|
|
parser: tsParser,
|
|
extraFileExtensions: ['.svelte']
|
|
}
|
|
}
|
|
},
|
|
{
|
|
ignores: [
|
|
'**/.*', // dotfiles aren't ignored by default in FlatConfig
|
|
'.*', // dotfiles aren't ignored by default in FlatConfig
|
|
'**/.DS_Store',
|
|
'**/node_modules',
|
|
'butler/target',
|
|
'build',
|
|
'.svelte-kit',
|
|
'package',
|
|
'e2e',
|
|
'**/.env',
|
|
'**/.env.*',
|
|
'!**/.env.example',
|
|
'**/pnpm-lock.yaml',
|
|
'**/package-lock.json',
|
|
'**/yarn.lock',
|
|
'.github',
|
|
'.vscode',
|
|
'src-tauri',
|
|
'eslint.config.js',
|
|
'svelte.config.js',
|
|
'postcss.config.cjs',
|
|
'playwright.config.ts',
|
|
'**/.pnpm-store'
|
|
]
|
|
},
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
parser: tsEslint.parser,
|
|
project: true,
|
|
extraFileExtensions: ['.svelte']
|
|
}
|
|
},
|
|
rules: {
|
|
eqeqeq: ['error', 'always'],
|
|
'import-x/no-cycle': 'error',
|
|
|
|
'import-x/order': [
|
|
'error',
|
|
{
|
|
alphabetize: {
|
|
order: 'asc',
|
|
orderImportKind: 'asc',
|
|
caseInsensitive: false
|
|
},
|
|
|
|
groups: [
|
|
'index',
|
|
'sibling',
|
|
'parent',
|
|
'internal',
|
|
'external',
|
|
'builtin',
|
|
'object',
|
|
'type'
|
|
],
|
|
|
|
'newlines-between': 'never'
|
|
}
|
|
],
|
|
|
|
'import-x/no-unresolved': [
|
|
'error',
|
|
{
|
|
ignore: ['^\\$app', '^\\$env']
|
|
}
|
|
],
|
|
|
|
'func-style': [2, 'declaration'],
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_'
|
|
}
|
|
],
|
|
|
|
'no-return-await': 'off',
|
|
'@typescript-eslint/return-await': ['error', 'always'],
|
|
'@typescript-eslint/promise-function-async': 'error',
|
|
'@typescript-eslint/await-thenable': 'error',
|
|
'svelte/no-at-html-tags': 'off'
|
|
},
|
|
settings: {
|
|
'import-x/extensions': ['.ts'],
|
|
'import-x/parsers': {
|
|
'@typescript-eslint/parser': ['.ts']
|
|
},
|
|
'import-x/resolver': {
|
|
typescript: {
|
|
project: ['./tsconfig.json', './.svelte-kit/tsconfig.json']
|
|
}
|
|
}
|
|
},
|
|
plugins: {
|
|
'square-svelte-store': squareSvelteStore,
|
|
'import-x': pluginImportX
|
|
}
|
|
}
|
|
);
|