@@ -79,6 +79,9 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
7979 " before" : false ,
8080 },
8181 ],
82+ " @typescript-eslint/consistent-type-imports" : [
83+ " error" ,
84+ ],
8285 " @typescript-eslint/default-param-last" : [
8386 " error" ,
8487 ],
@@ -180,23 +183,12 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
180183 {
181184 " format" : [
182185 " camelCase" ,
183- " PascalCase" ,
184- " UPPER_CASE" ,
185- ],
186- " selector" : " variable" ,
187- },
188- {
189- " format" : [
190- " camelCase" ,
191- " PascalCase" ,
192186 ],
193- " selector" : " function" ,
194- },
195- {
196- " format" : [
197- " PascalCase" ,
187+ " leadingUnderscore" : " allow" ,
188+ " modifiers" : [
189+ " private" ,
198190 ],
199- " selector" : " typeLike " ,
191+ " selector" : " memberLike " ,
200192 },
201193 ],
202194 " @typescript-eslint/no-array-constructor" : [
@@ -238,6 +230,9 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
238230 " @typescript-eslint/no-extra-semi" : [
239231 " off" ,
240232 ],
233+ " @typescript-eslint/no-floating-promises" : [
234+ " error" ,
235+ ],
241236 " @typescript-eslint/no-implied-eval" : [
242237 " error" ,
243238 ],
@@ -755,6 +750,7 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
755750 " error" ,
756751 {
757752 " allowUnsafeDynamicCyclicDependency" : false ,
753+ " disableScc" : false ,
758754 " ignoreExternal" : false ,
759755 " maxDepth" : " ∞" ,
760756 },
@@ -902,6 +898,7 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
902898 " internal" ,
903899 ],
904900 ],
901+ " named" : false ,
905902 " warnOnUnassignedImports" : false ,
906903 },
907904 ],
@@ -1925,6 +1922,9 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
19251922 ],
19261923 " no-void" : [
19271924 " error" ,
1925+ {
1926+ " allowAsStatement" : true ,
1927+ },
19281928 ],
19291929 " no-warning-comments" : [
19301930 " off" ,
@@ -2551,6 +2551,8 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
25512551 " .tsx" ,
25522552 " .js" ,
25532553 " .jsx" ,
2554+ " .mjs" ,
2555+ " .cjs" ,
25542556 ],
25552557 " import/external-module-folders" : [
25562558 " node_modules" ,
@@ -2577,6 +2579,8 @@ exports[`ESLint rules should match defined rules for js: Applied rules 1`] = `
25772579 " .tsx" ,
25782580 " .js" ,
25792581 " .jsx" ,
2582+ " .mjs" ,
2583+ " .cjs" ,
25802584 ],
25812585 },
25822586 },
@@ -2604,7 +2608,6 @@ exports[`ESLint rules should match defined rules for js: Ignored rules 1`] = `
26042608 "@typescript-eslint/consistent-type-assertions",
26052609 "@typescript-eslint/consistent-type-definitions",
26062610 "@typescript-eslint/consistent-type-exports",
2607- "@typescript-eslint/consistent-type-imports",
26082611 "@typescript-eslint/explicit-function-return-type",
26092612 "@typescript-eslint/explicit-member-accessibility",
26102613 "@typescript-eslint/explicit-module-boundary-types",
@@ -2620,7 +2623,6 @@ exports[`ESLint rules should match defined rules for js: Ignored rules 1`] = `
26202623 "@typescript-eslint/no-dynamic-delete",
26212624 "@typescript-eslint/no-empty-interface",
26222625 "@typescript-eslint/no-extraneous-class",
2623- "@typescript-eslint/no-floating-promises",
26242626 "@typescript-eslint/no-for-in-array",
26252627 "@typescript-eslint/no-import-type-side-effects",
26262628 "@typescript-eslint/no-inferrable-types",
@@ -2693,6 +2695,14 @@ exports[`ESLint rules should match defined rules for js: Ignored rules 1`] = `
26932695 "jest/no-restricted-matchers",
26942696 "jest/no-test-return-statement",
26952697 "jest/no-untyped-mock-factory",
2698+ "jest/padding-around-after-all-blocks",
2699+ "jest/padding-around-after-each-blocks",
2700+ "jest/padding-around-all",
2701+ "jest/padding-around-before-all-blocks",
2702+ "jest/padding-around-before-each-blocks",
2703+ "jest/padding-around-describe-blocks",
2704+ "jest/padding-around-expect-groups",
2705+ "jest/padding-around-test-blocks",
26962706 "jest/prefer-called-with",
26972707 "jest/prefer-comparison-matcher",
26982708 "jest/prefer-each",
0 commit comments