1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * @Author: wenjie 1454560336@qq.com
- * @Date: 2024-12-11 11:32:10
- * @LastEditors: wenjie 1454560336@qq.com
- * @LastEditTime: 2024-12-23 16:49:41
- * @FilePath: \mall4vp-bbc\.eslintrc.js
- * @Description:
- *
- * Copyright (c) 2024 by ${git_name_email}, All Rights Reserved.
- */
- // https://eslint.org/docs/user-guide/configuring
- module.exports = {
- // root: true,
- // parser: 'babel-eslint',
- // parserOptions: {
- // sourceType: 'module'
- // },
- // env: {
- // browser: true,
- // },
- // // https://github.com/standard/standard/blob/master/docs/RULES-en.md
- // extends: 'standard',
- // // required to lint *.vue files
- // plugins: [
- // 'html'
- // ],
- // // add your custom rules here
- // rules: {
- // // allow async-await
- // 'generator-star-spacing': 'off',
- // // allow debugger during development
- // 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
- // }
- }
|