aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.eslintrc.json1
-rwxr-xr-xscripts/ci.sh2
2 files changed, 1 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index c7597cef3..dd3821398 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -100,6 +100,7 @@
100 "node_modules/" 100 "node_modules/"
101 ], 101 ],
102 "parserOptions": { 102 "parserOptions": {
103 "EXPERIMENTAL_useSourceOfProjectReferenceRedirect": true,
103 "project": [ 104 "project": [
104 "./tsconfig.json", 105 "./tsconfig.json",
105 "./shared/tsconfig.json", 106 "./shared/tsconfig.json",
diff --git a/scripts/ci.sh b/scripts/ci.sh
index 7ad6f38e9..a628cbced 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -98,8 +98,6 @@ elif [ "$1" = "external-plugins" ]; then
98 98
99 runTest "$1" 1 $externalPluginsFiles 99 runTest "$1" 1 $externalPluginsFiles
100elif [ "$1" = "lint" ]; then 100elif [ "$1" = "lint" ]; then
101 npm run build:server
102
103 npm run eslint -- --ext .ts "./server/**/*.ts" "shared/**/*.ts" "scripts/**/*.ts" 101 npm run eslint -- --ext .ts "./server/**/*.ts" "shared/**/*.ts" "scripts/**/*.ts"
104 npm run swagger-cli -- validate support/doc/api/openapi.yaml 102 npm run swagger-cli -- validate support/doc/api/openapi.yaml
105 103