1 Star 0 Fork 34

sky/outline.js

forked from Yaohaixiao/outline.js 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* .eslintrc.js - eslint 配置
* =============================================================
* Created By: Yaohaixiao
* Update: 2023.7.12
*/
module.exports = {
root: true,
// 环境定义了预定义的全局变量。
env: {
//环境定义了预定义的全局变量。更多在官网查看
browser: true,
node: true,
commonjs: true,
amd: true,
es6: true,
jest: true
},
extends: ['prettier', 'eslint:recommended', 'plugin:import/errors'],
plugins: ['import', 'compat'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
// JavaScript 语言选项
parserOptions: {
// ECMAScript 版本
ecmaVersion: 2020,
// 设置为 "script" (默认) 或 "module"(如果你的代码是 ECMAScript 模块)。
sourceType: 'module',
// 想使用的额外的语言特性:
ecmaFeatures: {
// 允许在全局作用域下使用 return 语句
globalReturn: false,
impliedStrict: true,
objectLiteralDuplicateProperties: false,
modules: true
}
},
settings: {
'import/resolver': {
jest: {
jestConfigFile: './jest.config.js'
}
}
},
rules: {
'compat/compat': 'error'
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/scrsxx/outline.js.git
git@gitee.com:scrsxx/outline.js.git
scrsxx
outline.js
outline.js
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385