Skip to content

Commit 4e3e735

Browse files
authored
chore: prettier run and update svelte example versions (#4567)
1 parent 5516336 commit 4e3e735

File tree

76 files changed

+505
-512
lines changed

Some content is hidden

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

76 files changed

+505
-512
lines changed

babel.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ module.exports = {
1010
{
1111
loose,
1212
modules: false,
13-
include: [
14-
"@babel/plugin-proposal-nullish-coalescing-operator",
15-
],
13+
include: ['@babel/plugin-proposal-nullish-coalescing-operator'],
1614
// exclude: ['@babel/plugin-transform-regenerator'],
1715
},
1816
],

docs/api/core/column-def.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ meta?: ColumnMeta // This interface is extensible via declaration merging. See b
9595
The meta data to associated with the column. We can access it anywhere when the column is available via `column.columnDef.meta`. This type is global to all tables and can be extended like so:
9696

9797
```tsx
98-
import '@tanstack/react-table';
98+
import '@tanstack/react-table'
9999

100100
declare module '@tanstack/table-core' {
101101
interface ColumnMeta<TData extends RowData, TValue> {

docs/api/features/sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ Enables/Disables sorting for the table.
284284
enableSortingRemoval?: boolean
285285
```
286286
287-
Enables/Disables the ability to remove sorting for the table.
287+
Enables/Disables the ability to remove sorting for the table.
288288
If `true` then changing sort order will circle like: 'none' -> 'desc' -> 'asc' -> 'none' -> ...
289289
If `false` then changing sort order will circle like: 'none' -> 'desc' -> 'asc' -> 'desc' -> 'asc' -> ...
290290

docs/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,4 +379,4 @@
379379
]
380380
}
381381
]
382-
}
382+
}

examples/solid/basic/src/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* @refresh reload */
2-
import { render } from 'solid-js/web';
2+
import { render } from 'solid-js/web'
33

4-
import './index.css';
5-
import App from './App';
4+
import './index.css'
5+
import App from './App'
66

7-
render(() => <App />, document.getElementById('root') as HTMLElement);
7+
render(() => <App />, document.getElementById('root') as HTMLElement)

examples/solid/basic/tsconfig.dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"src"
1111
// "__tests__/**/*.test.*"
1212
]
13-
}
13+
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { defineConfig } from 'vite';
2-
import solidPlugin from 'vite-plugin-solid';
1+
import { defineConfig } from 'vite'
2+
import solidPlugin from 'vite-plugin-solid'
33

44
export default defineConfig({
55
plugins: [solidPlugin()],
66
build: {
77
target: 'esnext',
88
polyfillDynamicImport: false,
99
},
10-
});
10+
})
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* @refresh reload */
2-
import { render } from 'solid-js/web';
2+
import { render } from 'solid-js/web'
33

4-
import './index.css';
5-
import App from './App';
4+
import './index.css'
5+
import App from './App'
66

7-
render(() => <App />, document.getElementById('root') as HTMLElement);
7+
render(() => <App />, document.getElementById('root') as HTMLElement)

examples/solid/column-groups/tsconfig.dev.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"src"
1111
// "__tests__/**/*.test.*"
1212
]
13-
}
13+
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { defineConfig } from 'vite';
2-
import solidPlugin from 'vite-plugin-solid';
1+
import { defineConfig } from 'vite'
2+
import solidPlugin from 'vite-plugin-solid'
33

44
export default defineConfig({
55
plugins: [solidPlugin()],
66
build: {
77
target: 'esnext',
88
polyfillDynamicImport: false,
99
},
10-
});
10+
})

0 commit comments

Comments
 (0)