mirror of
https://github.com/tornadocash/provider.git
synced 2024-11-22 01:36:51 +01:00
17 lines
286 B
JavaScript
17 lines
286 B
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
extends: [
|
|
'@nuxtjs',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
rules: {
|
|
'no-useless-rename': [
|
|
'warn',
|
|
{
|
|
ignoreDestructuring: true,
|
|
ignoreImport: true,
|
|
ignoreExport: true,
|
|
},
|
|
],
|
|
},
|
|
} |