mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
7f0f016f2e
* chore(deps): update dependency eslint-plugin-unicorn to v53 * use structured clone to match new eslint rules * use raw string instead of escaping slash --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
40 lines
1.5 KiB
JavaScript
40 lines
1.5 KiB
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
sourceType: 'module',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
plugins: ['@typescript-eslint/eslint-plugin'],
|
|
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', 'plugin:unicorn/recommended'],
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
ignorePatterns: ['.eslintrc.js'],
|
|
rules: {
|
|
'@typescript-eslint/interface-name-prefix': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
'unicorn/prevent-abbreviations': 'off',
|
|
'unicorn/filename-case': 'off',
|
|
'unicorn/no-null': 'off',
|
|
'unicorn/prefer-top-level-await': 'off',
|
|
'unicorn/prefer-event-target': 'off',
|
|
'unicorn/no-thenable': 'off',
|
|
'unicorn/import-style': 'off',
|
|
'unicorn/prefer-structured-clone': 'off',
|
|
'@typescript-eslint/await-thenable': 'error',
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
// Note: you must disable the base rule as it can report incorrect errors
|
|
'require-await': 'off',
|
|
'@typescript-eslint/require-await': 'error',
|
|
curly: 2,
|
|
'prettier/prettier': 0,
|
|
'no-restricted-imports': ['error', { patterns: [{ group: ['.*'], message: 'Relative imports are not allowed.' }] }],
|
|
},
|
|
};
|