1 Star 0 Fork 8

丷泡泡o0O/mini-sandbox

forked from buuing/mini-sandbox 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 820 Bytes
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: ['standard'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
rules: {
// 参数后面不允许任何空格
'space-before-function-paren': ['error', 'never'],
// 尾随逗号
'comma-dangle': ['error', 'always-multiline'],
// 禁止在声明前调用 (方法除外)
'no-use-before-define': ['error', { functions: false, classes: true, variables: true }],
// 允许使用中括号来访问变量
'dot-notation': 'off',
// 允许转义字符
'no-useless-escape': 'off',
// 允许 new 不赋值
'no-new': 'off',
// 允许使用 eval
'no-eval': 'off',
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/qq1099719995/mini-sandbox.git
git@gitee.com:qq1099719995/mini-sandbox.git
qq1099719995
mini-sandbox
mini-sandbox
master

搜索帮助