返回提交历史
Modified
.eslintrc
+1
-1
XFEstudio/XFESpaceNinjaServer
fix: don't fail lint on missing semicolon; prettier will fix it (#266)
3e4eeb60
代码差异
1 个文件
+1
-1
@@ -11,7 +11,7 @@
11
11
"node": true
12
12
},
13
13
"rules": {
14
"@typescript-eslint/semi": ["error"],
14
"@typescript-eslint/semi": "warn",
15
15
"@typescript-eslint/explicit-function-return-type": "warn",
16
16
"@typescript-eslint/explicit-module-boundary-types": "warn",
17
17
"@typescript-eslint/restrict-template-expressions": "warn",