Skip to content

Commit

Permalink
meta: Imported packages from a private repo
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-coster committed Apr 11, 2023
0 parents commit f72ec88
Show file tree
Hide file tree
Showing 209 changed files with 32,466 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.yy linguist-documentation
*.yyp linguist-documentation
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @adam-coster
70 changes: 70 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# secrets
.env
*.env
.env.*
.rumpusCredentials
.rumpusDelegations
appleLoginKey

# builds
/bundle
tmp/
.turbo
dist
build
sandbox
rumpus/server/app
.trebuchet.json
*.cfg
sample.json
debug.log
spritely.log
.pnpm-debug.log
.svelte-kit

# dependencies
node_modules
package-lock.json
.yarn/cache
.yarn/install-state.gz


# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
.eslintcache

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
*.tsbuildinfo
.pnpm-debug.log

# System Files
.DS_Store
Thumbs.db

.env*
!.env.project
!.env.vault
.flaskenv*
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Added to prevent the root .gitignore from being used to determine
# packlists for workspaces (see https://github.com/npm/cli/issues/5001#issuecomment-1151282491 )
10 changes: 10 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
legacy-peer-deps=true
fund=false
strict-peer-dependencies=false
publish-branch=develop
engine-strict=true
use-node-version=18.13.0
prefer-workspace-packages=true
save-workspace-protocol=rolling
link-workspace-packages=false
save-prefix=""
25 changes: 25 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
node_modules
package-lock.json
.husky
.github
*.yy
**/*.yy
*.yyp
**/*.yyp
pnpm-lock.yaml
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"trailingComma": "all",
"bracketSpacing": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
24 changes: 24 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"recommendations": [
"svelte.svelte-vscode",
"vncz.vscode-apielements",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"augustocdias.tasks-shell-input",
"wmaurer.change-case",
"aaron-bond.better-comments",
"streetsidesoftware.code-spell-checker",
"bierner.comment-tagged-templates",
"mikestead.dotenv",
"visualstudioexptteam.vscodeintellicode",
"ecmel.vscode-html-css",
"bierner.jsdoc-markdown-highlighting",
"mrmlnc.vscode-json5",
"yzhang.markdown-all-in-one",
"shd101wyy.markdown-preview-enhanced",
"redhat.vscode-commons",
"albert.tabout",
"britesnow.vscode-toggle-quotes",
"redhat.vscode-yaml"
]
}
106 changes: 106 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"files.associations": {
"turbo.json": "jsonc"
},
"files.exclude": {
"**/node_modules": false,
"**/.turbo": false,
"**/*.tsbuildinfo": false,
"**/dist": false,
"**/build": false,
".github": false,
".vscode": false,
"scripts": false,
"config": false,
"rumpus": false
},
"search.exclude": {
"tmp/": true,
"**/.turbo": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/node_modules": true,
"**/dist": true,
"**/.svelte-kit": true,
"**/build": true,
"**/app": true,
"rumpus/server/assets/site/js": true,
"rumpus/server/assets/site/css": true,
"**/playwright*": true
},
"explorer.fileNesting.patterns": {
"*.js": "$(capture).*",
"*.ts": "$(capture).*",
"*.mjs": "$(capture).*",
"*.cjs": "$(capture).*",
"*rc": "$(capture)ignore",
"package.json": "workspace.json, lerna.*, readme.md, executors.json, generators.json, nx.json, package-lock.json,.gitignore, .*, tsconfig.*, turbo.json, pnpm-lock.yaml, pnpm-workspace.yaml, *.config.js, *.config.ts",
"tsconfig.json": "tsconfig.*.json",
"readme.md": "todo*, changelog*, license*, contributing*"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": false,
"source.fixAll": true,
"source.addMissingImports": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.javascript.terminalOptions": {
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"remoteRoot": null
},
"terminal.integrated.automationProfile.windows": {
"path": "C:/Program Files/Git/bin/bash.exe",
"icon": "terminal-bash"
},
"terminal.integrated.env.windows": {
"BSCOTCH_REPO": "@bscotch/tech"
},
"terminal.integrated.env.linux": {
"BSCOTCH_REPO": "@bscotch/tech"
},
"terminal.integrated.env.osx": {
"BSCOTCH_REPO": "@bscotch/tech"
},
"cSpell.words": [
"bumptype",
"deptype",
"deptypes",
"packlist",
"Pathy",
"pointable",
"Sequentialize",
"Sequentialized",
"Spritely",
"subqueue",
"subqueues"
],
"eslint.packageManager": "pnpm",
"eslint.onIgnoredFiles": "warn",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"svelte.enable-ts-plugin": true,
"svelte.plugin.svelte.defaultScriptLanguage": "ts",
"svelte.plugin.css.globals": "**/global.css",
"css.styleSheets": ["global.css"],
"eslint.codeActionsOnSave.mode": "problems",
"typescript.preferences.importModuleSpecifierEnding": "js",
"javascript.preferences.importModuleSpecifierEnding": "js",
"cSpell.useGitignore": true,
"cSpell.files": ["**/*.md", "**/src/**/*"]
// "terminal.integrated.automationProfile.windows": {
// "path": "powershell.exe",
// "args": ["-NoLogo", "-NoProfile"]
// }
}
Loading

0 comments on commit f72ec88

Please sign in to comment.