1 Star 0 Fork 6

Feldspar_77/toyed-browser-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.js 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
wendraw 提交于 2021-08-21 15:10 . fix: parse html bugs, add test case
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
jest: true,
},
extends: ["airbnb-base", "plugin:prettier/recommended", "plugin:jest/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["@typescript-eslint"],
rules: {
"import/prefer-default-export": "off",
"no-restricted-syntax": "off",
"no-use-before-define": ["error", { functions: false, classes: false }],
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-absolute-path": "off",
"import/no-extraneous-dependencies": "off",
"vue/no-multiple-template-root": "off",
"no-param-reassign": [
"error",
{
props: true,
ignorePropertyModificationsFor: ["state", "config"],
},
],
"max-len": [1, { code: 100 }],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hust_jyh/toyed-browser-client.git
git@gitee.com:hust_jyh/toyed-browser-client.git
hust_jyh
toyed-browser-client
toyed-browser-client
main

搜索帮助