diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..edc2d68 --- /dev/null +++ b/.prettierrc @@ -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', + }, + }, +] \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js deleted file mode 100644 index 1ff74d1..0000000 --- a/.prettierrc.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = { - trailingComma: 'es5', - tabWidth: 2, - useTabs: false, - semi: true, - singleQuote: true, - jsxSingleQuote: false, - bracketSpacing: true, - bracketSameLine: false, - arrowParens: 'always', - overrides: [ - { - files: '**/*.hbs', - options: { - parser: 'html', - }, - }, - ], -}; diff --git a/src/api/index.ts b/src/api/index.ts index 7b15623..cd4cba7 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -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';