mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
24 lines
487 B
JavaScript
24 lines
487 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
amd: true,
|
|
node: true,
|
|
jest: true
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
argsIgnorePattern: '^_'
|
|
}
|
|
],
|
|
|
|
'@typescript-eslint/no-var-requires': 'off'
|
|
}
|
|
};
|