Skip to content

Commit 5cada75

Browse files
authored
Update dependencies, tweak eslint (#32719)
- ~~Remove `eslint-plugin-sonarjs`. I lost faith in it since they moved it to their monorepo and I can't recall the last time when this plugin raised a useful error.~~ - Add new rules from `no-jquery` - ~~Tweak typescript config to prevent temp files in root directory in certain situations~~ File is just gitignored now. - Tested all relevant dependencies
1 parent 936665b commit 5cada75

File tree

7 files changed

+974
-800
lines changed

7 files changed

+974
-800
lines changed

.eslintrc.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ rules:
524524
no-jquery/no-data: [0]
525525
no-jquery/no-deferred: [2]
526526
no-jquery/no-delegate: [2]
527+
no-jquery/no-done-fail: [2]
527528
no-jquery/no-each-collection: [0]
528529
no-jquery/no-each-util: [0]
529530
no-jquery/no-each: [0]
@@ -538,6 +539,7 @@ rules:
538539
no-jquery/no-find-util: [2]
539540
no-jquery/no-find: [0]
540541
no-jquery/no-fx-interval: [2]
542+
no-jquery/no-fx: [2]
541543
no-jquery/no-global-eval: [2]
542544
no-jquery/no-global-selector: [0]
543545
no-jquery/no-grep: [2]

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ _testmain.go
2828
*.exe
2929
*.test
3030
*.prof
31+
*.tsbuildInfo
3132

3233
*coverage.out
3334
coverage.all

0 commit comments

Comments
 (0)