mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-25 07:45:41 +03:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 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',
|
|
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': 'warn',
|
|
'svelte/no-at-html-tags': 'off',
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'square-svelte-store/use-square-svelte-stores': 'error',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn', // or "error"
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_'
|
|
}
|
|
]
|
|
},
|
|
settings: {
|
|
'import/extensions': ['.ts'],
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts']
|
|
},
|
|
'import/resolver': {
|
|
typescript: {
|
|
project: ['./tsconfig.json', './.svelte-kit/tsconfig.json']
|
|
}
|
|
}
|
|
}
|
|
};
|