diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json index 6f39ed3..76e625e 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "format": "yarn prettier . --write", "lint": "yarn eslint --ext js,jsx,ts,tsx src", "format-check": "yarn prettier . --check", - "upgrade": "rimraf yarn.lock && yarn cache clean && yarn install && yarn up" + "upgrade": "rimraf yarn.lock && yarn cache clean && yarn install && yarn up && yarn dlx @yarnpkg/sdks vscode" }, "devDependencies": { "@types/common-tags": "^1.8.0", @@ -84,7 +84,8 @@ "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, - "sourceType": "module" + "sourceType": "module", + "project": "./tsconfig.json" }, "plugins": [ "@typescript-eslint" @@ -109,7 +110,8 @@ "ts-check": "allow-with-description", "minimumDescriptionLength": 5 } - ] + ], + "@typescript-eslint/no-floating-promises": "error" } }, "prettier": { |