Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamsha committed Dec 9, 2024
1 parent fc1fa32 commit 0eb42b4
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 562 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"@typescript-eslint/dot-notation": [
2,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"@typescript-eslint/explicit-function-return-type": [
Expand Down Expand Up @@ -295,6 +299,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"@typescript-eslint/no-unused-vars": [
Expand Down Expand Up @@ -417,6 +422,8 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
2,
{
"allowImplicit": true,
"allowVoid": false,
"checkForEach": false,
},
],
"arrow-body-style": [
Expand All @@ -437,6 +444,8 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
0,
{
"ignoreDestructuring": false,
"ignoreGlobals": false,
"ignoreImports": false,
"properties": "never",
},
],
Expand All @@ -459,6 +468,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"class-methods-use-this": [
2,
{
"enforceForClassFields": true,
"exceptMethods": [],
},
],
Expand Down Expand Up @@ -491,7 +501,11 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"dot-notation": [
0,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"eqeqeq": [
Expand Down Expand Up @@ -1325,6 +1339,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
],
"newIsCap": true,
"newIsCapExceptions": [],
"properties": true,
},
],
"no-alert": [
Expand Down Expand Up @@ -1479,6 +1494,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
{
"allow": [],
"boolean": false,
"disallowTemplateShorthand": false,
"number": true,
"string": true,
},
Expand Down Expand Up @@ -2011,6 +2027,11 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"allow": [],
"allowAfterSuper": false,
"allowAfterThis": false,
"allowAfterThisConstructor": false,
"allowFunctionParams": true,
"allowInArrayDestructuring": true,
"allowInObjectDestructuring": true,
"enforceInClassFields": false,
"enforceInMethodNames": true,
},
],
Expand Down Expand Up @@ -2053,6 +2074,7 @@ exports[`should match ESLint configuration snapshot: next 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"no-unused-labels": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
2,
{
"allowImplicit": true,
"allowVoid": false,
"checkForEach": false,
},
],
"arrow-body-style": [
Expand All @@ -34,6 +36,8 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
2,
{
"ignoreDestructuring": false,
"ignoreGlobals": false,
"ignoreImports": false,
"properties": "never",
},
],
Expand All @@ -56,6 +60,7 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
"class-methods-use-this": [
2,
{
"enforceForClassFields": true,
"exceptMethods": [],
},
],
Expand Down Expand Up @@ -89,6 +94,7 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
2,
{
"allowKeywords": true,
"allowPattern": "",
},
],
"eqeqeq": [
Expand Down Expand Up @@ -470,6 +476,7 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
],
"newIsCap": true,
"newIsCapExceptions": [],
"properties": true,
},
],
"no-alert": [
Expand Down Expand Up @@ -624,6 +631,7 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
{
"allow": [],
"boolean": false,
"disallowTemplateShorthand": false,
"number": true,
"string": true,
},
Expand Down Expand Up @@ -1147,6 +1155,11 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
"allow": [],
"allowAfterSuper": false,
"allowAfterThis": false,
"allowAfterThisConstructor": false,
"allowFunctionParams": true,
"allowInArrayDestructuring": true,
"allowInObjectDestructuring": true,
"enforceInClassFields": false,
"enforceInMethodNames": true,
},
],
Expand Down Expand Up @@ -1189,6 +1202,7 @@ exports[`should match ESLint configuration snapshot: node 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"no-unused-labels": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"@typescript-eslint/dot-notation": [
2,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"@typescript-eslint/explicit-function-return-type": [
Expand Down Expand Up @@ -232,6 +236,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"@typescript-eslint/no-unused-vars": [
Expand Down Expand Up @@ -354,6 +359,8 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
2,
{
"allowImplicit": true,
"allowVoid": false,
"checkForEach": false,
},
],
"arrow-body-style": [
Expand All @@ -374,6 +381,8 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
0,
{
"ignoreDestructuring": false,
"ignoreGlobals": false,
"ignoreImports": false,
"properties": "never",
},
],
Expand All @@ -396,6 +405,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"class-methods-use-this": [
2,
{
"enforceForClassFields": true,
"exceptMethods": [],
},
],
Expand Down Expand Up @@ -428,7 +438,11 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"dot-notation": [
0,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"eqeqeq": [
Expand Down Expand Up @@ -1262,6 +1276,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
],
"newIsCap": true,
"newIsCapExceptions": [],
"properties": true,
},
],
"no-alert": [
Expand Down Expand Up @@ -1416,6 +1431,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
{
"allow": [],
"boolean": false,
"disallowTemplateShorthand": false,
"number": true,
"string": true,
},
Expand Down Expand Up @@ -1948,6 +1964,11 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"allow": [],
"allowAfterSuper": false,
"allowAfterThis": false,
"allowAfterThisConstructor": false,
"allowFunctionParams": true,
"allowInArrayDestructuring": true,
"allowInObjectDestructuring": true,
"enforceInClassFields": false,
"enforceInMethodNames": true,
},
],
Expand Down Expand Up @@ -1990,6 +2011,7 @@ exports[`should match ESLint configuration snapshot: react 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"no-unused-labels": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"@typescript-eslint/dot-notation": [
2,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"@typescript-eslint/explicit-function-return-type": [
Expand Down Expand Up @@ -232,6 +236,7 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"@typescript-eslint/no-unused-vars": [
Expand Down Expand Up @@ -354,6 +359,8 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
2,
{
"allowImplicit": true,
"allowVoid": false,
"checkForEach": false,
},
],
"arrow-body-style": [
Expand All @@ -374,6 +381,8 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
0,
{
"ignoreDestructuring": false,
"ignoreGlobals": false,
"ignoreImports": false,
"properties": "never",
},
],
Expand All @@ -396,6 +405,7 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"class-methods-use-this": [
2,
{
"enforceForClassFields": true,
"exceptMethods": [],
},
],
Expand Down Expand Up @@ -428,7 +438,11 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"dot-notation": [
0,
{
"allowIndexSignaturePropertyAccess": false,
"allowKeywords": true,
"allowPattern": "",
"allowPrivateClassPropertyAccess": false,
"allowProtectedClassPropertyAccess": false,
},
],
"eqeqeq": [
Expand Down Expand Up @@ -1019,6 +1033,7 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
],
"newIsCap": true,
"newIsCapExceptions": [],
"properties": true,
},
],
"no-alert": [
Expand Down Expand Up @@ -1173,6 +1188,7 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
{
"allow": [],
"boolean": false,
"disallowTemplateShorthand": false,
"number": true,
"string": true,
},
Expand Down Expand Up @@ -1705,6 +1721,11 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"allow": [],
"allowAfterSuper": false,
"allowAfterThis": false,
"allowAfterThisConstructor": false,
"allowFunctionParams": true,
"allowInArrayDestructuring": true,
"allowInObjectDestructuring": true,
"enforceInClassFields": false,
"enforceInMethodNames": true,
},
],
Expand Down Expand Up @@ -1747,6 +1768,7 @@ exports[`should match ESLint configuration snapshot: storybook 1`] = `
"allowShortCircuit": true,
"allowTaggedTemplates": true,
"allowTernary": true,
"enforceForJSX": false,
},
],
"no-unused-labels": [
Expand Down
Loading

0 comments on commit 0eb42b4

Please sign in to comment.