mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
69983ff83a
* feat: hybrid search * fixing normal search * building out the query * okla * filters * date * order by date * Remove hybrid search endpoint * remove search hybrid endpoint * faces query * search for person * search and pagination * with exif * with exif * justify gallery viewer * memory view * Fixed userId is null * openapi and styling * searchdto * lint and format * remove term * generate sql * fix test * chips * not showing true * pr feedback * pr feedback * nit name * linting * pr feedback * styling * linting
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:svelte/recommended',
|
|
'plugin:unicorn/recommended',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaVersion: 2022,
|
|
extraFileExtensions: ['.svelte'],
|
|
},
|
|
env: {
|
|
browser: true,
|
|
es2017: true,
|
|
node: true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.svelte'],
|
|
parser: 'svelte-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
},
|
|
},
|
|
],
|
|
globals: {
|
|
NodeJS: true,
|
|
},
|
|
rules: {
|
|
'unicorn/no-useless-undefined': 'off',
|
|
'unicorn/prefer-spread': 'off',
|
|
'unicorn/no-null': 'off',
|
|
'unicorn/prevent-abbreviations': 'off',
|
|
'unicorn/no-nested-ternary': 'off',
|
|
'unicorn/consistent-function-scoping': 'off',
|
|
'unicorn/prefer-top-level-await': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
// Allow underscore (_) variables
|
|
argsIgnorePattern: '^_$',
|
|
varsIgnorePattern: '^_$',
|
|
},
|
|
],
|
|
curly: 2,
|
|
},
|
|
};
|