gitbutler/eslint.config.js

178 lines
4.1 KiB
JavaScript
Raw Normal View History

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 tsEslint from 'typescript-eslint';
import pluginImportX from 'eslint-plugin-import-x';
2024-06-27 17:37:54 +03:00
// Flat config support: https://github.com/storybookjs/eslint-plugin-storybook/pull/156
import storybook from 'eslint-plugin-storybook';
import svelteParser from 'svelte-eslint-parser';
export default tsEslint.config(
js.configs.recommended,
2024-06-27 17:42:22 +03:00
...storybook.configs['flat/recommended'],
...tsEslint.configs.recommended,
...eslintPluginSvelte.configs['flat/recommended'],
eslintConfigPrettier,
...eslintPluginSvelte.configs['flat/prettier'],
2024-08-16 16:30:53 +03:00
{
files: ['apps/desktop/e2e/**'],
languageOptions: {
ecmaVersion: 2021,
sourceType: 'module',
globals: {
...globals.node,
...globals.browser,
...globals.mocha,
...globals.chai,
$: false
}
}
},
{
files: ['**/*.svelte'],
languageOptions: {
ecmaVersion: 2021,
sourceType: 'module',
globals: {
...globals.node,
...globals.browser,
$state: 'readonly',
$derived: 'readonly',
$props: 'readonly',
$bindable: 'readonly',
$inspect: 'readonly',
Modal and select component fixes (#4253) * feat: fix clickoutside for multi modal case, fix select list options display. * Move select to a separate folder * Serach field CSS tweak * Replace the old `Select` with the new one * Remove old `Select` component and switch `SelectNew` component name * Added `$effect` type to eslint config * Added the `searchable` property to `Select` * disable text selection and added an animation * dropzone hover animation update * Remove focus state outline * Move `Listitem` to `ProjectPopup` as a snippet * rename `useResize` to `resizeObserver` * Rename `useAutoHeight` to `autoHeight` * remove unused component `PopupMenuItem` * Update `Unupply` modal design * Handle `Select` position on resize * added an animation to the new context menu * Right click context menu added * revert right click context menu * Context menu: add `item` arg for the `open` method * updated context menu for `Filter`, `FileItem`, branch `kebab` menu * Updated Dropdown context menus * Temporary remove `copy PR link` * Rename: `BranchLanePopupMenu ` to `BranchLaneContextMenu` * FileListItem uncomment commented code * Hunk context menu updated * Remove `PopupMenu` * Replace the old `ContextMenu` file with the new one * Added blocking overlay for dropdown context menus * animation timing update * `Select` folder renamed to `select` * import fix * import fix * remove commented code and `console.log` * add arrow navigation to the `Select` component * case sensitivity added * Update HunkViewer.svelte * remove duplicated folder
2024-07-08 12:38:50 +03:00
$host: 'readonly',
$effect: 'readonly'
},
parser: svelteParser,
parserOptions: {
parser: tsParser,
2024-09-11 17:00:04 +03:00
extraFileExtensions: ['.svelte'],
svelteFeatures: {
experimentalGenerics: true
}
}
}
},
{
ignores: [
'**/.*', // dotfiles aren't ignored by default in FlatConfig
'.*', // dotfiles aren't ignored by default in FlatConfig
'**/.DS_Store',
'**/node_modules',
2024-06-28 13:15:11 +03:00
'**/butler/target',
'**/build',
'**/dist',
'.svelte-kit',
2024-06-28 13:15:11 +03:00
'**/package',
'**/.env',
'**/.env.*',
'!**/.env.example',
'**/pnpm-lock.yaml',
'**/package-lock.json',
'**/yarn.lock',
'.github',
'.vscode',
'src-tauri',
2024-06-28 13:15:11 +03:00
'**/eslint.config.js',
'**/svelte.config.js',
2024-06-27 17:37:54 +03:00
'**/.pnpm-store',
'**/vite.config.ts.timestamp-*',
2024-06-28 13:15:11 +03:00
'!.storybook',
'target/',
2024-08-05 12:45:45 +03:00
'crates/',
'packages/ui/storybook-static',
2024-08-05 12:45:45 +03:00
// We're having issues parsing splat syntax in svelte components
'packages/ui/src/stories/**/*.svelte'
]
},
{
languageOptions: {
parserOptions: {
parser: tsEslint.parser,
project: ['./packages/**/tsconfig.json', './apps/**/tsconfig.json'],
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']
}
],
2024-07-02 16:00:47 +03:00
'import-x/no-relative-packages': 'error', // Don't allow packages to have relative imports between each other
'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: {
2024-06-28 13:15:11 +03:00
project: [
'./apps/desktop/tsconfig.json',
'./apps/desktop/.svelte-kit/tsconfig.json',
'./apps/web/tsconfig.json',
'./apps/web/.svelte-kit/tsconfig.json',
2024-06-28 13:15:11 +03:00
'./packages/**/tsconfig.json',
2024-06-28 13:41:18 +03:00
'./packages/ui/.svelte-kit/tsconfig.json'
2024-06-28 13:15:11 +03:00
]
}
}
},
plugins: {
'import-x': pluginImportX
}
}
);