mirror of
https://github.com/anatolykopyl/vue-three-d-mockup.git
synced 2026-03-26 21:05:10 +00:00
23 lines
454 B
JavaScript
23 lines
454 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/vue3-essential',
|
|
'@vue/airbnb',
|
|
],
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
ignorePatterns: [
|
|
'bundle/*'
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
'global-require': 'off',
|
|
'no-param-reassign': 'off',
|
|
},
|
|
};
|