mirror of
https://github.com/immich-app/immich.git
synced 2026-07-28 22:51:21 -07:00
189 lines
5.6 KiB
JavaScript
189 lines
5.6 KiB
JavaScript
import js from '@eslint/js';
|
|
import tslintPluginCompat from '@koddsson/eslint-plugin-tscompat';
|
|
import prettier from 'eslint-config-prettier';
|
|
import eslintPluginBetterTailwindcss from 'eslint-plugin-better-tailwindcss';
|
|
import eslintPluginCompat from 'eslint-plugin-compat';
|
|
import eslintPluginSvelte from 'eslint-plugin-svelte';
|
|
import eslintPluginUnicorn from 'eslint-plugin-unicorn';
|
|
import globals from 'globals';
|
|
import parser from 'svelte-eslint-parser';
|
|
import typescriptEslint from 'typescript-eslint';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
export default typescriptEslint.config(
|
|
...eslintPluginSvelte.configs.recommended,
|
|
eslintPluginUnicorn.configs.recommended,
|
|
js.configs.recommended,
|
|
{
|
|
plugins: {
|
|
tscompat: tslintPluginCompat,
|
|
},
|
|
rules: {
|
|
'tscompat/tscompat': [
|
|
'error',
|
|
{
|
|
browserslist: fs
|
|
.readFileSync(path.join(__dirname, '.browserslistrc'), 'utf8')
|
|
.split('\n')
|
|
.map((line) => line.trim())
|
|
.filter((line) => line && !line.startsWith('#')),
|
|
},
|
|
],
|
|
},
|
|
languageOptions: {
|
|
parser,
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
},
|
|
// ignores: ['**/service-worker/**'],
|
|
},
|
|
{
|
|
plugins: {
|
|
compat: eslintPluginCompat,
|
|
},
|
|
settings: {
|
|
polyfills: [],
|
|
lintAllEsApis: true,
|
|
},
|
|
rules: {
|
|
'compat/compat': 'error',
|
|
},
|
|
},
|
|
{
|
|
ignores: [
|
|
'**/.DS_Store',
|
|
'**/node_modules',
|
|
'build',
|
|
'.svelte-kit',
|
|
'package',
|
|
'**/.env',
|
|
'**/.env.*',
|
|
'!**/.env.example',
|
|
'**/pnpm-lock.yaml',
|
|
'**/package-lock.json',
|
|
'**/yarn.lock',
|
|
'**/svelte.config.js',
|
|
'eslint.config.js',
|
|
'tailwind.config.js',
|
|
'coverage',
|
|
'vite.config.ts',
|
|
],
|
|
},
|
|
typescriptEslint.configs.recommended,
|
|
{
|
|
plugins: {
|
|
svelte: eslintPluginSvelte,
|
|
},
|
|
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
NodeJS: true,
|
|
},
|
|
|
|
parser: typescriptEslint.parser,
|
|
ecmaVersion: 2022,
|
|
sourceType: 'module',
|
|
|
|
parserOptions: {
|
|
extraFileExtensions: ['.svelte'],
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
},
|
|
|
|
ignores: ['**/service-worker/**'],
|
|
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_$',
|
|
varsIgnorePattern: '^_$',
|
|
},
|
|
],
|
|
|
|
curly: 2,
|
|
'unicorn/no-array-reverse': 'off', // toReversed() is not supported in Chrome 109 or Safari 15.4
|
|
'unicorn/no-useless-undefined': 'off',
|
|
'unicorn/prefer-spread': 'off',
|
|
'unicorn/no-null': 'off',
|
|
'unicorn/name-replacements': 'off',
|
|
'unicorn/no-nested-ternary': 'off',
|
|
'unicorn/consistent-function-scoping': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'unicorn/prefer-top-level-await': 'off',
|
|
'unicorn/import-style': 'off',
|
|
'unicorn/no-array-sort': 'off',
|
|
'unicorn/no-for-loop': 'off',
|
|
'unicorn/no-unreadable-for-of-expression': 'off',
|
|
'unicorn/no-break-in-nested-loop': 'off',
|
|
'unicorn/no-top-level-assignment-in-function': 'off',
|
|
'unicorn/prefer-uint8array-base64': 'off',
|
|
'unicorn/max-nested-calls': 'off',
|
|
'unicorn/no-declarations-before-early-exit': 'off',
|
|
'unicorn/no-unreadable-object-destructuring': 'off',
|
|
// not yet compatible with all our supported browsers
|
|
'unicorn/prefer-promise-with-resolvers': 'off',
|
|
// not yet compatible with all our supported browsers
|
|
'unicorn/prefer-iterator-to-array': 'off',
|
|
// not yet compatible with all our supported browsers
|
|
'unicorn/prefer-array-from-async': 'off',
|
|
// maybe we do want to enable this later. TBD
|
|
'unicorn/prefer-await': 'off',
|
|
'unicorn/consistent-class-member-order': 'off',
|
|
'unicorn/class-reference-in-static-methods': ['error', { preferThis: false, preferSuper: false }],
|
|
'unicorn/no-unsafe-property-key': 'off',
|
|
'unicorn/consistent-boolean-name': 'off',
|
|
'unicorn/no-non-function-verb-prefix': 'off',
|
|
'unicorn/prefer-minimal-ternary': 'off',
|
|
'unicorn/no-empty-file': 'off',
|
|
'unicorn/prefer-simple-condition-first': 'off',
|
|
// prefer the typescript-eslint type-aware version
|
|
'unicorn/require-array-sort-compare': 'off',
|
|
'@typescript-eslint/require-array-sort-compare': 'error',
|
|
'@typescript-eslint/await-thenable': 'error',
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
'@typescript-eslint/require-await': 'error',
|
|
'@typescript-eslint/switch-exhaustiveness-check': ['error', { considerDefaultExhaustiveForUnions: true }],
|
|
'svelte/button-has-type': 'error',
|
|
'object-shorthand': ['error', 'always'],
|
|
'svelte/no-navigation-without-resolve': 'off',
|
|
},
|
|
},
|
|
{
|
|
extends: [eslintPluginBetterTailwindcss.configs.recommended],
|
|
settings: {
|
|
'better-tailwindcss': {
|
|
entryPoint: 'src/app.css',
|
|
},
|
|
},
|
|
|
|
rules: {
|
|
'better-tailwindcss/enforce-consistent-line-wrapping': 'off',
|
|
'better-tailwindcss/no-unknown-classes': 'off',
|
|
},
|
|
|
|
files: ['**/*.svelte'],
|
|
|
|
languageOptions: {
|
|
parser: parser,
|
|
ecmaVersion: 5,
|
|
sourceType: 'script',
|
|
|
|
parserOptions: {
|
|
parser: typescriptEslint.parser,
|
|
},
|
|
},
|
|
},
|
|
);
|