mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 09:36:52 +01:00
21 lines
341 B
JavaScript
21 lines
341 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
extends: [
|
|
'@nuxtjs',
|
|
'prettier',
|
|
'prettier/vue',
|
|
'plugin:prettier/recommended',
|
|
'plugin:nuxt/recommended',
|
|
],
|
|
plugins: ['prettier'],
|
|
// add your custom rules here
|
|
rules: {},
|
|
}
|