Skip to content

Commit

Permalink
feat: update recommended extensions
Browse files Browse the repository at this point in the history
feat: add additional configs
  • Loading branch information
kpanot committed Nov 29, 2024
1 parent 3a6a2d7 commit 06253b1
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 103 deletions.
21 changes: 12 additions & 9 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"amadeusitgroup.otter-devtools",
"angular.ng-template",
"Orta.vscode-jest",
"arcanis.vscode-zipfs",
"stylelint.vscode-stylelint",
"nrwl.angular-console",
"esbenp.prettier-vscode",
"bierner.emojisense",
"bierner.markdown-emoji",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"GitHub.codespaces",
"GitHub.vscode-pull-request-github",
"GitHub.vscode-github-actions",
"amadeusitgroup.otter-devtools",
"mrmlnc.vscode-scss"
"GitHub.vscode-pull-request-github",
"Gruntfuggly.todo-tree",
"jasonnutter.vscode-codeowners",
"mrmlnc.vscode-scss",
"nrwl.angular-console",
"Orta.vscode-jest",
"stylelint.vscode-stylelint"
]
}
150 changes: 56 additions & 94 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,14 @@
{
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true,
"**/dist/": true,
"**/build/": true,
"**/node_modules": true,
"**/.cache": true,
"**/src/package.json": true,
"tools/github-actions/*/packaged-action/**": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"files.associations": {
"*.json5": "jsonc"
},
"files.watcherExclude": {
"**/.pnp.*": true,
"**/.git/**": true,
"**/.yarn/**": true,
"**/.cache/**": true,
"**/dist/**": true,
"**/node_modules/**": true
},
"npm.packageManager": "yarn",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.quoteStyle": "single",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.preferTypeOnlyAutoImports": true,
"jest.jestCommandLine": "yarn jest",
"jest.debugMode": true,
"jest.runMode": {
"type": "on-save",
"coverage": true
},
"testing.openTesting": "neverOpen",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"readme.md": "security.md, code_of_conduct.md, contributing.md",
"*.js": "${capture}.js.map, ${capture}.d.ts, ${capture}.d.ts.map",
"tsconfig.json": "tsconfig.*.json",
"tsconfig.base.json": "tsconfig.*.json",
"package.json": "ng-package.json, project.json, yarn.lock, .yarnrc.yml, .npmrc, .npmrc.*, .pnp.*",
"nx.json": ".nxignore",
".eslintrc.*": ".eslintignore, .eslintrc-*",
"eslint.config.mjs": "eslint.*.config.mjs",
"jest.config.js": "jest.config.*",
"Dockerfile*": ".dockerignore"
"emojisense.languages": {
"markdown": {
"emojiDecoratorsEnabled": true,
"markupCompletionsEnabled": true,
"unicodeCompletionsEnabled": false
}
},
"stylelint.validate": [
"css",
"scss",
"source.css.styled",
"source.markdown.math",
"styled-css"
],
"eslint.codeActionsOnSave.mode": "all",
"eslint.format.enable": true,
"eslint.nodePath": ".yarn/sdks",
"eslint.validate": [
"javascript",
"typescript",
"json",
"yaml"
],
"eslint.probe": [
"javascript",
"typescript",
Expand All @@ -74,47 +18,65 @@
"json",
"yaml"
],
"eslint.format.enable": true,
"eslint.codeActionsOnSave.mode": "all",
"nxConsole.generatorAllowlist": [
"@o3r/core:*"
"eslint.validate": [
"javascript",
"typescript",
"json",
"yaml"
],
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.js": "${capture}.js.map, ${capture}.d.ts, ${capture}.d.ts.map",
".eslintrc.*": ".eslintignore, .eslintrc-*",
"Dockerfile*": ".dockerignore",
"eslint.config.mjs": "eslint.*.config.mjs",
"jest.config.js": "jest.config.*",
"nx.json": ".nxignore",
"package.json": "ng-package.json, project.json, yarn.lock, .yarnrc.yml, .npmrc, .npmrc.*, .pnp.*",
"readme.md": "security.md, code_of_conduct.md, contributing.md",
"tsconfig.base.json": "tsconfig.*.json",
"tsconfig.json": "tsconfig.*.json"
},
"files.associations": {
"*.json5": "jsonc"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/Thumbs.db": true
},
"files.readonlyExclude": {
"packages/@o3r-training/*sdk/src/api/*/index.ts": true,
"packages/@o3r-training/*sdk/src/models/base/*/index.ts": true
},
"files.readonlyFromPermissions": true,
"files.readonlyInclude": {
"**/.cache/**": true,
"**/.pnp.*": true,
"**/.yarn/**": true,
"**/node_modules/**": true,
"tools/github-actions/*/packaged-action/**": true,
"packages/@o3r-training/*sdk/src/api/**/*.ts": true,
"packages/@o3r-training/*sdk/src/models/base/**/*.ts": true,
"packages/@o3r-training/*sdk/src/spec/api-mock.ts": true,
"packages/@o3r-training/*sdk/src/spec/operation-adapter.ts": true
},
"files.readonlyExclude": {
"packages/@o3r-training/*sdk/src/api/*/index.ts": true,
"packages/@o3r-training/*sdk/src/models/base/*/index.ts": true
"packages/@o3r-training/*sdk/src/spec/operation-adapter.ts": true,
"tools/github-actions/*/packaged-action/**": true
},
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": false,
"otter.extract.styling.prefix": "o3r",
"typescript.tsserver.watchOptions": "vscode",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.foldingImportsByDefault": true,
"eslint.useFlatConfig": true,
"eslint.rules.customizations": [
{
"rule": "@stylistic/*",
"fixable": true,
"severity": "off"
},
{
"rule": "!@stylistic/*",
"fixable": true,
"severity": "info"
}
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.cache/**": true,
"**/.git/**": true,
"**/.pnp.*": true,
"**/.yarn/**": true,
"**/dist/**": true,
"**/node_modules/**": true
},
"jest.debugMode": true,
"jest.jestCommandLine": "yarn jest",
"npm.packageManager": "yarn",
"nxConsole.generatorAllowlist": [
"@o3r/core:*"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
"otter.extract.styling.prefix": "o3r",
"typescript.tsserver.watchOptions": "vscode"
}

0 comments on commit 06253b1

Please sign in to comment.