tslint 怎么对某个页面禁用检查
怎么只在index.tsx这个页面禁用变量检查?
上面是报错信息,下面是相关代码:
//pages/index.tsx
//rule没使用导致检查不过**********
const checkRealName = (rule, value) => {
if (!value) {
return Promise.reject('请输入真实姓名');
}else if(value.length > 50) {
return Promise.reject('姓名长度不可超过50个字符');
}
return Promise.resolve();
}
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"typeRoots": ["./node_modules/@types", "./typings"],
"lib": ["dom", "es2015", "es2016", "es2017"],
"allowJs": false,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"exclude": [".next", "node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TSLint rule flags