28 lines
794 B
JSON
28 lines
794 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": ["airbnb-base"],
|
|
"plugins": ["prettier"],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-plusplus": "off", // 允许i++,i--
|
|
"no-use-before-define": "off", // 无需在调用前面定义,之后定义也可以
|
|
"no-console": "off",
|
|
"import/extensions": [
|
|
"error",
|
|
"ignorePackages", // 忽略 node_modules 内的包
|
|
{
|
|
"mjs": "always", // 不允许省略 .mjs 后缀
|
|
"js": "always", // 不允许省略 .js 后缀
|
|
"ts": "always" // 不允许省略 .ts 后缀
|
|
}
|
|
],
|
|
"no-param-reassign": "off"
|
|
}
|
|
}
|