Skip to content

Commit

Permalink
chore: ignore api-client in eslint.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Oct 23, 2024
1 parent ebec08b commit aa637a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ui/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default [
...tsEslint.configs.recommended,
...pluginVue.configs["flat/essential"],
{ files: ["**/*.vue"], languageOptions: { parserOptions: { parser: tsEslint.parser } } },
// { ignores: [`packages/api-client/**`] },
{ ignores: [`packages/api-client/**`] },
includeIgnoreFile(gitignorePath),
{
plugins: { tsEslint },
Expand Down
2 changes: 1 addition & 1 deletion ui/packages/api-client/src/apis/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
export * from './AlbumApi';
export * from './AuthApi';
export * from './DefaultApi';
Expand Down
2 changes: 1 addition & 1 deletion ui/packages/api-client/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
export * from './runtime';
export * from './apis/index';
export * from './models/index';
2 changes: 1 addition & 1 deletion ui/packages/api-client/src/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
export * from './ApiImageImageIdGet200Response';
export * from './ApiStrategyPostRequest';
export * from './IoSakurasouControllerRequestAlbumManageInsertRequest';
Expand Down

0 comments on commit aa637a0

Please sign in to comment.