Skip to content

Commit 7990613

Browse files
chore(javascript): use oxlint (generated)
algolia/api-clients-automation#3895 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 3c10984 commit 7990613

File tree

499 files changed

+1972
-1906
lines changed

Some content is hidden

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

499 files changed

+1972
-1906
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
- [d4df544d6](https://github.com/algolia/api-clients-automation/commit/d4df544d6) fix(specs): remove usage [skip-bc] ([#3691](https://github.com/algolia/api-clients-automation/pull/3691)) by [@kai687](https://github.com/kai687/)
5555
- [d39b87726](https://github.com/algolia/api-clients-automation/commit/d39b87726) chore: assert node helpers ([#3689](https://github.com/algolia/api-clients-automation/pull/3689)) by [@shortcuts](https://github.com/shortcuts/)
56-
- [46d9d8fd0](https://github.com/algolia/api-clients-automation/commit/46d9d8fd0) feat(specs): add (optional) _automaticInsights to search result ([#3688](https://github.com/algolia/api-clients-automation/pull/3688)) by [@raed667](https://github.com/raed667/)
56+
- [46d9d8fd0](https://github.com/algolia/api-clients-automation/commit/46d9d8fd0) feat(specs): add (optional) \_automaticInsights to search result ([#3688](https://github.com/algolia/api-clients-automation/pull/3688)) by [@raed667](https://github.com/raed667/)
5757

5858
## [5.4.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.3.2...5.4.0)
5959

@@ -765,7 +765,7 @@ New major version released! Browse [our documentation](https://www.algolia.com/d
765765

766766
## [5.0.0-alpha.12](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.11...5.0.0-alpha.12)
767767

768-
- [ff02ba09](https://github.com/algolia/api-clients-automation/commit/ff02ba09) fix(javascript): revert: do not send user-agent for Predict (#957) ([#919](https://github.com/algolia/api-clients-automation/pull/919)) by [@shortcuts](https://github.com/shortcuts/)
768+
- [ff02ba09](https://github.com/algolia/api-clients-automation/commit/ff02ba09) fix(javascript): revert: do not send user-agent for Predict (#957) ([#919](https://github.com/algolia/api-clients-automation/pull/919)) by [@shortcuts](https://github.com/shortcuts/)
769769

770770
## [5.0.0-alpha.11](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.10...5.0.0-alpha.11)
771771

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@
3232

3333
## 💡 Getting Started
3434

35-
3635
To get started, you first need to install algoliasearch (or any other available API client package).
3736
All of our clients comes with type definition, and are available for both browser and node environments.
3837

3938
### With a package manager
4039

41-
4240
```bash
4341
4442
# or
@@ -82,4 +80,4 @@ Encountering an issue? Before reaching out to support, we recommend heading to o
8280

8381
## 📄 License
8482

85-
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).
83+
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).

base.tsup.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import path from 'path';
2-
32
import type { Options } from 'tsup';
43

54
type PKG = {

lerna.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"packages": [
3-
"packages/*"
4-
],
2+
"packages": ["packages/*"],
53
"version": "independent",
64
"useNx": true
75
}

nx.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
"default": {
44
"runner": "nx/tasks-runners/default",
55
"options": {
6-
"cacheableOperations": [
7-
"build:many",
8-
"build:all",
9-
"build"
10-
]
6+
"cacheableOperations": ["build:many", "build:all", "build"]
117
}
128
}
139
}

packages/algoliasearch/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@
3232

3333
## 💡 Getting Started
3434

35-
3635
To get started, you first need to install algoliasearch (or any other available API client package).
3736
All of our clients comes with type definition, and are available for both browser and node environments.
3837

3938
### With a package manager
4039

41-
4240
```bash
4341
4442
# or
@@ -82,4 +80,4 @@ Encountering an issue? Before reaching out to support, we recommend heading to o
8280

8381
## 📄 License
8482

85-
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).
83+
The Algolia JavaScript API Client is an open-sourced software licensed under the [MIT license](LICENSE).

packages/algoliasearch/__tests__/algoliasearch.browser.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* eslint no-console: 0 */
2-
3-
import { vi, test, expect } from 'vitest';
2+
import { expect, test, vi } from 'vitest';
43

54
import { LogLevelEnum } from '../../client-common/src/types';
65
import { createConsoleLogger } from '../../logger-console/src/logger';

packages/algoliasearch/__tests__/algoliasearch.common.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
import { describe, expect, test } from 'vitest';
2+
13
import {
24
DEFAULT_CONNECT_TIMEOUT_BROWSER,
35
DEFAULT_READ_TIMEOUT_BROWSER,
46
DEFAULT_WRITE_TIMEOUT_BROWSER,
57
} from '@algolia/client-common';
68
import type { EchoResponse } from '@algolia/requester-testing';
7-
import { describe, test, expect } from 'vitest';
89

910
import { browserEchoRequester } from '../../requester-testing/src/browserEchoRequester';
1011
import { algoliasearch, apiClientVersion } from '../builds/browser';

packages/algoliasearch/__tests__/algoliasearch.fetch.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* eslint no-console: 0 */
2-
3-
import { vi, test, expect } from 'vitest';
2+
import { expect, test, vi } from 'vitest';
43

54
import { LogLevelEnum } from '../../client-common/src/types';
65
import { createConsoleLogger } from '../../logger-console/src/logger';

packages/algoliasearch/__tests__/algoliasearch.node.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* eslint no-console: 0 */
2-
3-
import { vi, test, expect } from 'vitest';
2+
import { expect, test, vi } from 'vitest';
43

54
import { LogLevelEnum } from '../../client-common/src/types';
65
import { createConsoleLogger } from '../../logger-console/src/logger';

0 commit comments

Comments
 (0)