This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
srprices/.eslintrc.js
2020-09-30 22:35:22 -07:00

21 lines
448 B
JavaScript

module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'@vue/airbnb',
'@vue/typescript/recommended',
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'max-len': 'off',
'import/prefer-default-export': 'off',
},
};