Sets new users to trial by default and docs improvements (#1536)

* Sets new users to trial by default

* Update README.md

* Update README.md

* Docs improvements

* Adds migration
This commit is contained in:
Omar López
2022-01-17 12:42:38 -07:00
committed by GitHub
parent 55f25d9194
commit 103877737e
5 changed files with 78 additions and 45 deletions

View File

@@ -1,10 +1,12 @@
{
"recommendations": [
"DavidAnson.vscode-markdownlint", // markdown linting
"yzhang.markdown-all-in-one", // nicer markdown support
"esbenp.prettier-vscode", // prettier plugin
"dbaeumer.vscode-eslint", // eslint plugin
"bradlc.vscode-tailwindcss", // hinting / autocompletion for tailwind
"heybourn.headwind", // automatically sort tailwind classes in predictable order, kinda like "prettier for tailwind",
"ban.spellright", // Spell check for docs
"stripe.vscode-stripe" // stripe VSCode extension
]
}

View File

@@ -6,5 +6,7 @@
"source.fixAll.eslint": true
},
"eslint.run": "onSave",
"typescript.preferences.importModuleSpecifier": "non-relative"
"typescript.preferences.importModuleSpecifier": "non-relative",
"spellright.language": ["en"],
"spellright.documentTypes": ["markdown"]
}