You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-4
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
-[Installation](#installation)
11
11
-[Configuration](#configuration)
12
12
-[Formatting](#formatting)
13
+
-[Linting](#linting)
13
14
-[Enums](#enums)
14
15
-[Config API](#config-api)
15
16
-[Contributing](#contributing)
@@ -97,19 +98,35 @@ export default defineConfig({
97
98
98
99
### Formatting
99
100
100
-
By default, `openapi-ts` will automatically format your client according to your project configuration. To disable automatic formatting, set `autoformat` to false
101
+
By default, `openapi-ts` will automatically format your client according to your project configuration. To disable automatic formatting, set `format` to false
You can also prevent your client from being processed by formatters and linters by adding your output path to the tool's ignore file (e.g. `.eslintignore`, `.prettierignore`).
113
+
You can also prevent your client from being processed by formatters by adding your output path to the tool's ignore file (e.g. `.prettierignore`).
114
+
115
+
### Linting
116
+
117
+
For performance reasons, `openapi-ts` does not automatically lint your client. To enable this feature, set `lint` to true
0 commit comments