出于某种原因,这并不是让我大喊大叫。有人知道我可以添加到我的短绒棉布上以使其无效吗?
这确实引起了问题,因为如果我最终做类似duplicateName = duplicateName
的事情,那显然是行不通的。
const duplicateName = "Hi";
if(1 == 1) {
const duplicateName = "Hey"
}
{
"env": {
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}