XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

fix: don't fail lint on missing semicolon; prettier will fix it (#266)

3e4eeb60
Sainan <sainan@calamity.gg>
提交于

代码差异

1 个文件 +1 -1
Modified .eslintrc +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",