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 11, 2024
1 parent bc26278 commit 010f491
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 77 deletions.
20 changes: 12 additions & 8 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"jasonnutter.vscode-codeowners",
"amadeusitgroup.otter-devtools",
"angular.ng-template",
"Orta.vscode-jest",
"arcanis.vscode-zipfs",
"stylelint.vscode-stylelint",
"nrwl.angular-console",
"bierner.emojisense",
"bierner.markdown-emoji",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"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",
"mrmlnc.vscode-scss",
"nrwl.angular-console",
"Orta.vscode-jest",
"stylelint.vscode-stylelint"
]
}
198 changes: 129 additions & 69 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,64 +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,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"files.associations": {
"*.json5": "jsonc"
"emojisense.languages": {
"markdown": {
"emojiDecoratorsEnabled": true,
"markupCompletionsEnabled": true,
"unicodeCompletionsEnabled": false
}
},
"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-*",
"jest.config.js": "jest.config.*",
"Dockerfile*": ".dockerignore"
},
"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 @@ -68,29 +18,139 @@
"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",
"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,
"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",
"jest.runMode": {
"coverage": true,
"type": "on-save"
},
"npm.packageManager": "yarn",
"nxConsole.generatorAllowlist": [
"@o3r/core:*"
],
"otter.extract.styling.prefix": "o3r",
"search.exclude": {
"**/.cache": true,
"**/.pnp.*": true,
"**/.yarn": true,
"**/build/": true,
"**/dist/": true,
"**/node_modules": true,
"**/src/package.json": true,
"tools/github-actions/*/packaged-action/**": true
},
"stylelint.validate": [
"css",
"scss",
"source.css.styled",
"source.markdown.math",
"styled-css"
],
"testing.openTesting": "neverOpen",
"todo-tree.filtering.excludeGlobs": [
"**/node_modules/**",
"**/tools/github-actions/*/packaged-action/**",
"**/dist/**",
"**/.yarn/**",
"**/.cache/**"
],
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]",
"DEPRECATED",
"WORKAROUND"
],
"todo-tree.highlights.customHighlight": {
"BUG": {
"icon": "bug"
},
"DEPRECATED": {
"icon": "no-entry"
},
"FIXME": {
"icon": "flame"
},
"HACK": {
"icon": "tools"
},
"WORKAROUND": {
"icon": "arrow-switch"
},
"XXX": {
"icon": "x"
},
"[ ]": {
"icon": "issue-draft"
},
"[x]": {
"icon": "issue-closed"
}
},
"todo-tree.regex.regexCaseSensitive": false,
"todo-tree.tree.buttons.scanMode": false,
"todo-tree.tree.scanMode": "workspace only",
"todo-tree.tree.showCountsInTree": false,
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.preferTypeOnlyAutoImports": true,
"typescript.preferences.quoteStyle": "single",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.tsserver.watchOptions": "vscode"
}

0 comments on commit 010f491

Please sign in to comment.