mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-21 17:36:54 +01:00
26 lines
440 B
JavaScript
26 lines
440 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: {
|
|
'prettier/prettier': ['error', {'printWidth': 100}],
|
|
'nuxt/no-cjs-in-config': 'off'
|
|
}
|
|
}
|