diff --git a/eslint.config.js b/eslint.config.js index f84e8adde..ce47c6090 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -13,10 +13,11 @@ export default defineConfig([ }, extends: ["js/recommended"], - languageOptions: { globals: globals.node, ecmaVersion: "ES2015" }, + languageOptions: { globals: globals.node, ecmaVersion: 2015 }, rules: { "no-undef": "off", "no-unused-vars": "off", + "no-unexpected-multiline": "off", "@stylistic/comma-style": [1, "last"], "@stylistic/brace-style": [1, "1tbs"], "@stylistic/function-call-spacing": [1, "never"], diff --git a/tsconfig.json b/tsconfig.json index fc7a64526..e57aed44a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,14 +17,13 @@ "alwaysStrict": true, "allowUnreachableCode": false, - // Type checking options, only enable if probeJS installed - - "noCheck": true + // Type checking options, only disable if probeJS installed + "noCheck": true, - // "strict": true, - // "noImplicitAny": true, - // "noImplicitReturns": true, - // "noUnusedLocals": true, - // "noUnusedParameters": true + "strict": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noUnusedLocals": true, + "noUnusedParameters": true } } \ No newline at end of file