1 Star 0 Fork 2

arvin/MobX-JS

forked from Gitee 极速下载/MobX-JS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: "eslint:recommended",
ignorePatterns: ["**/__tests__/**/*"],
env: {
browser: true,
es6: true,
node: true
},
parserOptions: {
ecmaVersion: 6,
sourceType: "module"
},
rules: {
"no-fallthrough": "off",
"no-constant-condition": "off",
curly: "error",
"getter-return": "off",
"no-console": "off",
"no-var": "error",
"no-undef": "off",
"no-extra-semi": "off", // doesn't get along well with prettier
"no-unused-vars": "off", // got typescript for that,
"no-redeclare": "off", // No idea what it does, but it dies
"require-yield": "off" // Doesn't work with TS
},
globals: {
process: "readable",
global: "readable",
console: "readable",
setTimeout: "readable",
clearTimeout: "readable",
module: "writable"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tft2752/MobX-JS.git
[email protected]:tft2752/MobX-JS.git
tft2752
MobX-JS
MobX-JS
main

搜索帮助