Skip to content

Commit

Permalink
Rename docs_src to docs (#29)
Browse files Browse the repository at this point in the history
* Rename docs_src to docs

* Fix lint settings

* Remove more usages of docs_src
  • Loading branch information
fdc-viktor-luft committed Nov 13, 2023
1 parent ad0a6e6 commit 641e215
Show file tree
Hide file tree
Showing 48 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
},
"overrides": [{
"files": ["test/**", "test-utils/**", "docs_src/**"],
"files": ["test/**", "test-utils/**", "docs/**"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub Push][push-image]][push-url]
[![Coverage Status][coveralls-image]][coveralls-url]

# ![morfi logo](docs_src/public/images/form-logo.svg?sanitize=true) morfi
# ![morfi logo](docs/public/images/form-logo.svg?sanitize=true) morfi

Abstract form handling for any purpose (2.3 kb gzipped)

Expand Down Expand Up @@ -180,7 +180,7 @@ And finally, there are the `FieldControls<F>` returned by `Morfi.useField(myFiel

## More examples

See [here](https://github.com/fdc-viktor-luft/morfi/tree/master/docs_src/src/samples) for some
See [here](https://github.com/fdc-viktor-luft/morfi/tree/master/docs/src/samples) for some
provided samples. If you're missing something, let me know.

## Testing
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
"morfi": ["./src"]
}
},
"include": ["src", "test", "docs_src"]
"include": ["src", "test", "docs"]
}
2 changes: 1 addition & 1 deletion vite.config.docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
base: '/morfi/',
root: 'docs_src',
root: 'docs',
server: {
port: 3333,
strictPort: true,
Expand Down

0 comments on commit 641e215

Please sign in to comment.