module.exports = { root: true, // 停止在父级目录中寻找(配置文件) parserOptions: { ecmaVersion: 10, // 可以使用 6、7、8、9 或 10 来指定你想要使用的 ECMAScript 版本 sourceType: 'module', // "script" (默认) 或 "module"(如果你的代码是 ECMAScript 模块) // 表示你想使用的额外的语言特性 ecmaFeatures: { globalReturn: false, // 允许在全局作用域下使用 return 语句 impliedStrict: false, // 启用全局 strict mode (如果 ecmaVersion 是 5 或更高) jsx: true, // 启用 JSX experimentalObjectRestSpread: false // 启用实验性的 object rest/spread properties 支持 }, // parser: 'esprima' // 建议在项目为uniapp项目时使用 parser: 'babel-eslint' // ESLint 默认使用"espree"(Espree)作为其解析器,你也可以在配置文件中指定一个不同的解析器,"esprima",Babel-ESLint('babel-eslint'是一款用于 ESLint 的语法分析器,它支持使用 ESLint 分析所有 babel 兼容的代码)或@typescript-eslint/parser。 }, // 在配置文件里配置插件时,可以使用 plugins 关键字来存放插件名字的列表。插件名称可以省略 eslint-plugin- 前缀。插件是相对于 ESLint 进程的当前工作目录解析的 // plugins: ['a-plugin'], // processor: 'a-plugin/a-processor', // 插件可以提供处理器,指定处理器使用由插件名和处理器名组成的串接字符串加上斜杠 // 可以为特定类型的文件指定处理器 // overrides: [ // { // files: ['*.md'], // processor: 'a-plugin/markdown' // } // ], // 可以禁用一组文件的配置文件中的规则 // overrides: [ // { // files: ['*-test.js', '*.spec.js'], // rules: { // 'no-unused-expressions': 'off' // } // } // ], // ESLint 支持在配置文件添加共享设置。可以添加 settings 对象到配置文件,它将提供给每一个将被执行的规则。 // settings: { // sharedData: 'Hello' // }, env: { browser: true, // 浏览器环境中的全局变量 node: true, // Node.js 全局变量和 Node.js 作用域 es6: true // 启用除了 modules 以外的所有 ECMAScript 6 特性(该选项会自动设置 ecmaVersion 解析器选项为 6) // commonjs: true, // CommonJS 全局变量和 CommonJS 作用域 (用于 Browserify/WebPack 打包的只在浏览器中运行的代码) // 'shared-node-browser': true, // Node.js 和 Browser 通用全局变量 // worker: true, // Web Workers 全局变量 // amd: true, // 将 require() 和 define() 定义为像 amd 一样的全局变量 // mocha: true, // 添加所有的 Mocha 测试全局变量 // jasmine: true, // 添加所有的 Jasmine 版本 1.3 和 2.0 的测试全局变量 // jest: true, // Jest 全局变量 // phantomjs: true, // PhantomJS 全局变量 // protractor: true, // Protractor 全局变量 // qunit: true, // QUnit 全局变量 // jquery: true, // jQuery 全局变量 // prototypejs: true, // Prototype.js 全局变量 // shelljs: true, // ShellJS 全局变量 // meteor: true, // Meteor 全局变量 // mongo: true, // MongoDB 全局变量 // applescript: true, // AppleScript 全局变量 // nashorn: true, // Java 8 Nashorn 全局变量 // serviceworker: true, // Service Worker 全局变量 // atomtest: true, // Atom 测试全局变量 // embertest: true, // Ember 测试全局变量 // webextensions: true, // WebExtensions 全局变量 // greasemonkey: true // GreaseMonkey 全局变量 }, // 要在配置文件中配置全局变量,请将 globals 配置属性设置为一个对象,该对象包含以你希望使用的每个全局变量 globals: { // var1: 'writable', // "writable" 允许重写变量,等价于旧值:布尔值 true 和字符串值 "writeable" // var2: 'readonly', // "readonly" 不允许重写变量,等价于旧值:布尔值 false 和字符串值 "readable" // Promise: 'off', // "off" 禁用全局变量 uni: 'writable', UniApp: 'writable' }, // extends 属性值可以是:指定配置的字符串(配置文件的路径、可共享配置的名称、eslint:recommended 或 eslint:all);字符串数组:每个配置继承它前面的配置。extends 属性值可以省略包名的前缀 eslint-config-。 // extends 属性值可以由以下组成:①plugin:②包名 (省略了前缀,比如,react)③/④配置名称 (比如 recommended)。"plugin:react/recommended" extends: [ 'plugin:vue/recommended', // 如果是特殊情况(被检验的文件的目录下没有eslint-plugin-vue包),则又由于node加载不到该配置文件目录下的eslint-plugin-vue包的原因,故这里应该去掉 'eslint:recommended' ], // add your custom rules here // it is base on https://github.com/vuejs/eslint-config-vue;http://eslint.cn/docs/rules/;https://eslint.vuejs.org/rules/。 rules: { // 配置定义在插件中的一个规则的时候,你必须使用 插件名/规则ID 的形式 // 关于'plugin:vue/recommended'的扩展: // Base Rules 'vue/comment-directive': 'off', 'vue/jsx-uses-var': 'off', // Priority A: Essential 'vue/multi-word-component-names': 'off', // 这个规则要求组件名总是由多个单词组成,除了根App组件,以及Vue提供的内置组件 'vue/no-arrow-functions-in-watch': 'error', // 该规则不允许在定义观察器时使用箭头函数。箭头函数绑定到它们的父上下文,这意味着它们不能通过this 'vue/no-async-in-computed-properties': 'error', // 在computed properties中禁用异步actions 'vue/no-child-content': 'error', // 不允许元素的子内容被指令覆盖,如v-html或者v-text.(对象)选项有"additionalDirectives"要检查的附加指令的数组,没有v-前缀。默认为空;v-html和v-text总是被检查。 'vue/no-computed-properties-in-data': 'error', // This rule disallow accessing computed properties in data(). The computed property cannot be accessed in data() because is before initialization. 'vue/no-dupe-keys': 'error', // 不允许重复的keys,该规则旨在防止重复的属性名称。(对象)选项有"groups" (string[]) Array of additional groups to search for duplicates. Default is empty. 'vue/no-dupe-v-else-if': 'error', // This rule disallows duplicate conditions in the same v-if / v-else-if chain. 'vue/no-duplicate-attributes': ['error', { 'allowCoexistClass': true, 'allowCoexistStyle': true }], // allowCoexistClass (boolean),allowCoexistStyle (boolean) ... Enables v-bind:class/v-bind:style (opens new window)directive can coexist with the plain class/style attribute. Default is true. 'vue/no-export-in-script-setup': 'error', // Disallow export in