You've already forked AstralRinth
forked from didirus/AstralRinth
* Fix accept all button simply not working * Switched privacy settings icons to a shield Fixed auth changing the theme and consent Fixed server error on log in / out * Fixed scrolling issue on mobile * Fixed GPDR concerns
23 lines
369 B
JavaScript
23 lines
369 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: {
|
|
'no-console': 'off',
|
|
},
|
|
}
|