diff --git a/.gitignore b/.gitignore index f6ce0bf30..88bb08782 100644 --- a/.gitignore +++ b/.gitignore @@ -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.* diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index da9931e31..000000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "recommendations": [ - "esbenp.prettier-vscode", - "dbaeumer.vscode-eslint", - "styled-components.vscode-styled-components", - "mikestead.dotenv", - "emilerolley.publicodes-language-server" - ] -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 1f51ebf12..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -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" - } - - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index c03768ed0..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -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" - } - } -} diff --git a/.vscode/typescriptreact.code-snippets b/.vscode/typescriptreact.code-snippets deleted file mode 100644 index 26ab509b7..000000000 --- a/.vscode/typescriptreact.code-snippets +++ /dev/null @@ -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 ": { - "scope": "typescriptreact", - "prefix": "card", - "body": [ -"", - "", - "$0", - "", -"", - ], - "description": "Add a new component" - } -}