Skip to content

Commit d2fe313

Browse files
committed
format
1 parent 4610301 commit d2fe313

3 files changed

Lines changed: 16 additions & 5 deletions

File tree

examples/basic/eslint.config.mjs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@ import tseslint from 'typescript-eslint';
33

44
export default [
55
{
6-
ignores: ['node_modules/**', '.expo/**', 'dist/**', 'web-build/**', 'expo-env.d.ts', 'jest-setup.ts'],
6+
ignores: [
7+
'node_modules/**',
8+
'.expo/**',
9+
'dist/**',
10+
'web-build/**',
11+
'expo-env.d.ts',
12+
'jest-setup.ts',
13+
],
714
},
815
...tseslint.configs.recommended,
916
{

examples/cookbook/app/state-management/jotai/__tests__/test-utils.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ export const renderWithAtoms = async <TInitialValues extends InitialValues>(
3131
);
3232
};
3333

34-
export type HydrateAtomsWrapperProps<TInitialValues extends InitialValues> = React.PropsWithChildren<{
35-
initialValues: TInitialValues;
36-
}>;
34+
export type HydrateAtomsWrapperProps<TInitialValues extends InitialValues> =
35+
React.PropsWithChildren<{
36+
initialValues: TInitialValues;
37+
}>;
3738

3839
/**
3940
* A wrapper component that hydrates Jotai atoms with initial values.

examples/cookbook/eslint.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ export default [
1515
},
1616
},
1717
{
18-
files: ['basics-tutorial-react-strict-dom/**/*.ts', 'basics-tutorial-react-strict-dom/**/*.tsx'],
18+
files: [
19+
'basics-tutorial-react-strict-dom/**/*.ts',
20+
'basics-tutorial-react-strict-dom/**/*.tsx',
21+
],
1922
rules: {
2023
'import/no-unresolved': 'off',
2124
},

0 commit comments

Comments
 (0)