chore: enlève les dossiers d'IDE de git
parent
2c04d94cc8
commit
b90bcffb91
|
@ -12,8 +12,9 @@ storybook-static/
|
|||
# Local Netlify folder
|
||||
.netlify
|
||||
|
||||
# Webstorm (and other Jetbrains IDE)
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
|
||||
# Yarn https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
|
||||
**/.pnp.*
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"esbenp.prettier-vscode",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"styled-components.vscode-styled-components",
|
||||
"mikestead.dotenv",
|
||||
"emilerolley.publicodes-language-server"
|
||||
]
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"configurations": [
|
||||
{
|
||||
"type": "firefox",
|
||||
"request": "launch",
|
||||
"reAttach": true,
|
||||
"name": "Launch localhost",
|
||||
"url": "http://localhost:3000/mon-entreprise/simulateurs/salaire-brut-net",
|
||||
"webRoot": "${workspaceFolder}/site"
|
||||
}
|
||||
|
||||
]
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"spellright.language": [
|
||||
"fr",
|
||||
"en"
|
||||
],
|
||||
"spellright.documentTypes": [
|
||||
"yaml",
|
||||
"git-commit",
|
||||
"markdown",
|
||||
"publicodes"
|
||||
],
|
||||
"typescript.tsdk": "node_modules/typescript/lib",
|
||||
"editor.tabSize": 2,
|
||||
"cSpell.words": ["mycompanyinfrance", "smarttag"],
|
||||
"search.exclude": {
|
||||
"**/dist": true
|
||||
},
|
||||
"eslint.enable": true,
|
||||
"eslint.format.enable": true,
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.eslint": "explicit"
|
||||
},
|
||||
"githubPullRequests.ignoredPullRequestBranches": [
|
||||
"master"
|
||||
],
|
||||
"spellright.parserByClass": {
|
||||
"publicodes": {
|
||||
"parser": "plain"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
{
|
||||
// Place your mon-entreprise workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
|
||||
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
|
||||
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
|
||||
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
|
||||
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
|
||||
// Placeholders with the same ids are connected.
|
||||
// Example:
|
||||
// "Print to console": {
|
||||
// "scope": "javascript,typescript",
|
||||
// "prefix": "log",
|
||||
// "body": [
|
||||
// "console.log('$1');",
|
||||
// "$2"
|
||||
// ],
|
||||
// "description": "Log output to console"
|
||||
// }
|
||||
"Insert new <Card>": {
|
||||
"scope": "typescriptreact",
|
||||
"prefix": "card",
|
||||
"body": [
|
||||
"<Card",
|
||||
"title={t(",
|
||||
"'${1:i18n-namespace}.title',",
|
||||
"'Simulateur de revenus auto-entrepreneur'",
|
||||
")}",
|
||||
"ctaLabel={t(",
|
||||
"'${1:i18n-namespace}.cta',",
|
||||
"'Simuler les revenus'",
|
||||
")}",
|
||||
">",
|
||||
"<Trans i18nKey=\"${1:i18n-namespace}.body\">",
|
||||
"$0",
|
||||
"</Trans>",
|
||||
"</Card>",
|
||||
],
|
||||
"description": "Add a new <Card /> component"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue