ESLint 配置详解

参考:https://blog.csdn.net/chenlu5201314/article/details/105930368/

代码实例

module.exports = {
   
  root: true,
  parserOptions: {
   
      parser: 'babel-eslint'
  },
  env: {
   
      browser: true,
      es6: true
  },
  extends: [
      'standard',
      'plugin:vue/essential'
  ],
  plugins: 
posted @ 2022-12-06 22:18  轻风细雨_林木木  阅读(6)  评论(0)    收藏  举报