mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-10 01:20:47 +03:00
79 lines
1.9 KiB
JavaScript
79 lines
1.9 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:svelte/recommended',
|
|
'plugin:svelte/prettier',
|
|
'prettier'
|
|
],
|
|
plugins: ['svelte', '@typescript-eslint', 'square-svelte-store', 'import'],
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaVersion: 2020,
|
|
project: 'tsconfig.json',
|
|
tsconfigRootDir: __dirname,
|
|
extraFileExtensions: ['.svelte']
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.svelte'],
|
|
parser: 'svelte-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser'
|
|
}
|
|
}
|
|
],
|
|
env: {
|
|
browser: true,
|
|
es2017: true,
|
|
node: true
|
|
},
|
|
rules: {
|
|
'import/no-cycle': 'error',
|
|
'import/order': [
|
|
'error',
|
|
{
|
|
alphabetize: { order: 'asc', orderImportKind: 'asc', caseInsensitive: false },
|
|
groups: ['index', 'sibling', 'parent', 'internal', 'external', 'builtin', 'object', 'type'],
|
|
'newlines-between': 'never'
|
|
}
|
|
],
|
|
'import/no-unresolved': [
|
|
'error',
|
|
{
|
|
ignore: ['^\\$app', '^\\$env']
|
|
}
|
|
],
|
|
'func-style': [2, 'declaration'],
|
|
'svelte/no-at-html-tags': 'off',
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error', // or "error"
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_'
|
|
}
|
|
],
|
|
'no-return-await': 'off', // Required to be off for @typescript-eslint/return-await
|
|
'@typescript-eslint/return-await': ['error', 'always'],
|
|
'@typescript-eslint/promise-function-async': 'error',
|
|
'@typescript-eslint/await-thenable': 'error'
|
|
},
|
|
settings: {
|
|
'import/extensions': ['.ts'],
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts']
|
|
},
|
|
'import/resolver': {
|
|
typescript: {
|
|
project: ['./tsconfig.json', './.svelte-kit/tsconfig.json']
|
|
}
|
|
}
|
|
}
|
|
};
|