代码拉取完成,页面将自动刷新
{
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@typescript-eslint/no-explicit-any": 0, // 关闭不能声明 any 类型的警告
"@typescript-eslint/no-inferrable-types": 0, // 关闭可以自动类型推断时, 不用显式声明类型的错误
"@typescript-eslint/no-non-null-assertion": 0, // 关闭不能使用断言
"@typescript-eslint/no-shadow": 2, // 开启 TS 全局变量和局部变量同名的报错警告
"@typescript-eslint/explicit-module-boundary-types": 0, // 关闭 TS 必须书写函数返回值类型的警告
"@typescript-eslint/no-var-requires": 0, // 关闭无返回值的require,方便一些只加载的包使用比如dotenv
"@typescript-eslint/no-unused-vars": 0,
"class-methods-use-this": 0, // 确保类方法在使用 this 关键字时才被定义
"no-empty": 0, // 关闭使用空作用域
"no-console": 0, // 关闭 console 警告
"no-bitwise": 0, // 关闭不能使用位运算
"no-param-reassign": 0, // 关闭函数的参数是对象时, 不能更改该对象属性的限制
"no-plusplus": [2, { "allowForLoopAfterthoughts": true }], // 关闭 for 语句不能使用一元表达式
"no-continue": 0, // 关闭循环语法不能使用 continue
"default-case": 0 // 关闭 switch 必须要有 default 语句
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。