代码拉取完成,页面将自动刷新
/*
* @Author: zuoshentao
* @Date: 2022-07-13 10:05:45
* @LastEditors: zuoshentao
* @LastEditTime: 2022-07-23 10:57:03
* @Description: eslint规范
* @FilePath: /uni-preset-vue-vite/.eslintrc.js
*/
module.exports = {
env: {
browser: true,
es2021: true,
'vue/setup-compiler-macros': true
},
extends: [
'airbnb-base',
'eslint:recommended',
'plugin:vue/vue3-recommended',
'prettier',
'plugin:prettier/recommended'
],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
plugins: ['vue'],
globals: {
uni: true
},
rules: {
semi: ['warn', 'never'],
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-absolute-path': 'off',
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'no-param-reassign': [
'error',
{
props: true,
ignorePropertyModificationsFor: ['config', 'app']
}
],
'prettier/prettier': 'error',
'arrow-body-style': 'off',
'prefer-arrow-callback': 'off',
'vue/multi-word-component-names': 'off',
'global-require': 0,
'prefer-const': 0
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。