mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
module.exports = {
|
|
plugins: ['prettier'],
|
|
extends: ['react-app'],
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'no-unused-vars': 'off',
|
|
'no-loop-func': 'off',
|
|
'no-restricted-globals': 'off'
|
|
}
|
|
};
|