Skip to content

Commit

Permalink
🔧 Fix prettier config
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakihle committed Aug 12, 2024
1 parent 7daa111 commit d9d49cb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 22 deletions.
17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
trailingComma: 'es5'
tabWidth: 2
useTabs: false
semi: true
singleQuote: true
jsxSingleQuote: false
bracketSpacing: true
bracketSameLine: false
arrowParens: 'always'
overrides: [
{
files: '**/*.hbs',
options: {
parser: 'html',
},
},
]
19 changes: 0 additions & 19 deletions .prettierrc.js

This file was deleted.

6 changes: 3 additions & 3 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export { request } from './core/request';
export type { OpenAPIConfig } from './core/OpenAPI';

export type { AmplifyApplication } from './models/AmplifyApplication';
export { ApplicationCategory} from './models/ApplicationCategory';
export type { ContentTab} from './models/ContentTab';
export type { AccessRoles} from './models/AccessRoles';
export { ApplicationCategory } from './models/ApplicationCategory';
export type { ContentTab } from './models/ContentTab';
export type { AccessRoles } from './models/AccessRoles';
export type { FeatureAPIType } from 'src/api/models/FeatureAPIType';
export type { FeatureToggleDto } from './models/FeatureToggleDto';
export type { GraphUser } from './models/GraphUser';
Expand Down

0 comments on commit d9d49cb

Please sign in to comment.