Skip to content

Commit 54d350f

Browse files
committed
Merge branch 'main' into bug/organize-imports-case-sensitivity
2 parents 3c34aab + 0c23344 commit 54d350f

File tree

3,556 files changed

+708788
-994163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,556 files changed

+708788
-994163
lines changed

Diff for: .eslintignore

-23
This file was deleted.

Diff for: .eslintrc.json

+12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"root": true,
23
"parser": "@typescript-eslint/parser",
34
"parserOptions": {
45
"warnOnUnsupportedTypeScriptVersion": false,
@@ -12,6 +13,17 @@
1213
"plugins": [
1314
"@typescript-eslint", "no-null", "import", "eslint-plugin-local"
1415
],
16+
"ignorePatterns": [
17+
"**/node_modules/**",
18+
"/built/**",
19+
"/tests/**",
20+
"/lib/**",
21+
"/src/lib/*.generated.d.ts",
22+
"/scripts/**/*.js",
23+
"/scripts/**/*.d.*",
24+
"/internal/**",
25+
"/coverage/**"
26+
],
1527
"rules": {
1628
"sort-imports": ["error", {
1729
"ignoreCase": true,

Diff for: .github/codeql/codeql-configuration.yml

+1-27
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,6 @@ name : CodeQL Configuration
33
paths:
44
- src
55
- scripts
6-
- Gulpfile.mjs
6+
- Herebyfile.mjs
77
paths-ignore:
88
- src/lib
9-
10-
# These queries appear to time out after the module conversion.
11-
# https://github.com/github/codeql/issues/10937
12-
query-filters:
13-
- exclude:
14-
id: js/path-injection # TaintedPath.ql
15-
- exclude:
16-
id: js/command-line-injection # CommandInjection.ql
17-
- exclude:
18-
id: js/code-injection # CodeInjection.ql
19-
- exclude:
20-
id: js/bad-code-sanitization # ImproperCodeSanitization.ql
21-
- exclude:
22-
id: js/unsafe-dynamic-method-access # UnsafeDynamicMethodAccess.ql
23-
- exclude:
24-
id: js/clear-text-logging # CleartextLogging.ql
25-
- exclude:
26-
id: js/regex-injection # RegExpInjection.ql
27-
- exclude:
28-
id: js/unvalidated-dynamic-method-call # UnvalidatedDynamicMethodCall.ql
29-
- exclude:
30-
id: js/insecure-download # InsecureDownload.ql
31-
- exclude:
32-
id: js/prototype-polluting-assignment # PrototypePollutingAssignment.ql
33-
- exclude:
34-
id: js/request-forgery # RequestForgery.ql

0 commit comments

Comments
 (0)