feat(SW-3685): Add new TextArea and FormTextArea components * Add new TextArea and FormTextArea components * Update example form with description * Merge branch 'master' into feat/3685-new-textarea-component * Formatting new files with new prettier config * Added custom controls for the text area story Approved-by: Linus Flood
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
const config = {
|
|
"*.{ts,tsx}": [
|
|
() => "yarn lint",
|
|
() => "yarn check-types",
|
|
"prettier --write",
|
|
],
|
|
"*.{json,md}": "prettier --write",
|
|
"*.{html,js,cjs,mjs,css}": "prettier --write",
|
|
}
|
|
|
|
export default config
|