Merge pull request #2357 from github/update-v3.25.11-de945755c · github/codeql-action@b611370 (original) (raw)

214 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -41,29 +41,23 @@
41 41 "ignoreTemplateLiterals": true
42 42 }],
43 43 "no-async-foreach/no-async-foreach": "error",
44 -"no-console": "off",
45 44 "no-sequences": "error",
46 45 "no-shadow": "off",
47 -"@typescript-eslint/no-shadow": ["error"],
46 +"@typescript-eslint/no-shadow": "error",
48 47 "one-var": ["error", "never"]
49 48 },
50 49 "overrides": [{
51 50 // "temporarily downgraded during transition to eslint
52 51 "files": "**",
53 52 "rules": {
54 -"@typescript-eslint/ban-types": "off",
55 -"@typescript-eslint/explicit-module-boundary-types": "off",
56 53 "@typescript-eslint/no-explicit-any": "off",
57 54 "@typescript-eslint/no-unsafe-assignment": "off",
58 -"@typescript-eslint/no-unsafe-call": "off",
59 55 "@typescript-eslint/no-unsafe-member-access": "off",
60 -"@typescript-eslint/no-unsafe-return": "off",
61 56 "@typescript-eslint/no-var-requires": "off",
62 57 "@typescript-eslint/prefer-regexp-exec": "off",
63 58 "@typescript-eslint/require-await": "off",
64 59 "@typescript-eslint/restrict-template-expressions": "off",
65 -"func-style": "off",
66 -"sort-imports": "off"
60 +"func-style": "off"
67 61 }
68 62 }],
69 63 "settings": {
Original file line number Diff line number Diff line change
@@ -8,6 +8,10 @@ inputs:
8 8 description: "If true, we output a tools URL with codeql-bundle.tar.gz file rather than platform-specific URL"
9 9 default: 'false'
10 10 required: false
11 +setup-kotlin:
12 +description: "If true, we setup kotlin"
13 +default: 'true'
14 +required: true
11 15 outputs:
12 16 tools-url:
13 17 description: "The value that should be passed as the 'tools' input of the 'init' step."
@@ -58,3 +62,8 @@ runs:
58 62 echo "::error::Unrecognized version specified!"
59 63 exit 1
60 64 fi
65 +
66 + - uses: fwilhe2/setup-kotlin@9c245a6425255f5e98ba1ce6c15d31fce7eca9da
67 +if: ${{ inputs.setup-kotlin == 'true' }}
68 +with:
69 +version: 1.8.21