mirror of
https://github.com/ZorgCC/psina-avatar-frontend.git
synced 2025-03-15 14:50:25 +03:00
25 lines
490 B
JavaScript
25 lines
490 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'eslint:recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
},
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
endOfLine: 'auto',
|
|
},
|
|
],
|
|
},
|
|
}
|