Skip to content

Commit

Permalink
Merge branch 'main' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored Nov 29, 2024
2 parents b86593b + 655c91e commit 9baa3ad
Show file tree
Hide file tree
Showing 2 changed files with 215 additions and 0 deletions.
214 changes: 214 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
{
"name": "Stock Indicators Dev Container",
"image": "mcr.microsoft.com/devcontainers/dotnet:9.0",
"features": {
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.3"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.csharp",
"rebornix.ruby",
"streetsidesoftware.code-spell-checker",
"davidanson.vscode-markdownlint"
],
"settings": {
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 3000,
"files.encoding": "utf8",
"files.exclude": {
"**/.vs/**": true,
"**/bin/**": true,
"**/obj/**": true,
"**/TestResults/**": true,
"**/*.csproj.user": true
},
"search.exclude": {
"**/_site/**": true
},
"editor.codeLens": false,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.formatOnPaste": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"dotnet-test-explorer.testProjectPath": "tests/**/*Tests*.csproj",
"scss.validate": false,
"markdownlint.config": {
"MD033": false,
"MD025": false
},
"cSpell.words": [
"Apirine",
"Arnaud",
"Aroon",
"Ashi",
"Atrp",
"Backtest",
"backtesting",
"Blau",
"Bollinger",
"Botes",
"candlepart",
"Chaikin",
"Chainable",
"Chande",
"chandeliertype",
"chartable",
"chikou",
"Cobertura",
"Codacy",
"cwebp",
"daveskender",
"Dema",
"Detrended",
"Dimitrios",
"Doji",
"Donchian",
"drawdowns",
"Dreiss",
"duplicative",
"Ehlers",
"Epma",
"Etienne",
"FAMA",
"forex",
"Ginley",
"gittools",
"Goichi",
"gstatic",
"Heikin",
"Homma",
"Hosoda",
"htmlproofer",
"Hutson",
"Ichimoku",
"intraday",
"jemoji",
"Kaby",
"Keltner",
"kijun",
"Kinkō",
"Klinger",
"Kouzis",
"Kroll",
"lazyload",
"Legoux",
"Levshin",
"Loukas",
"LSMA",
"LWMA",
"Macd",
"Mape",
"Markowitz",
"Marubozu",
"matype",
"minifier",
"Mrkt",
"Mulloy",
"Munehisa",
"nobuild",
"NOKOGIRI",
"nupkg",
"Quong",
"Renko",
"Schaff",
"Seban",
"senkou",
"setx",
"Siepman",
"Skender",
"Smma",
"snupkg",
"Soudack",
"srcset",
"Starc",
"Stoch",
"stockindicators",
"Stoller",
"Swenlin",
"Tema",
"tenkan",
"Tillson",
"Trix",
"TSLA",
"Tushar",
"Vitali",
"Vwap",
"Vwma",
"warnaserror",
"Woodie"
],
"cSpell.ignorePaths": [
"package-lock.json",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
"src",
"tests"
],
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!css",
"!elixir",
"!git-commit",
"!go",
"!graphql",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!javascript",
"!javascriptreact",
"!jsonc",
"!latex",
"!less",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!swift",
"!typescript",
"!typescriptreact",
"!vue"
],
"cSpell.ignoreWords": [
"GXEZ",
"LINQ",
"OHLC",
"OHLCV",
"adxr",
"autobuild",
"betatype",
"buildscript",
"codeql",
"commandline",
"dessant",
"dwkk",
"endfor",
"endtype",
"gitversion",
"jacobtomlinson",
"livereload",
"lookback",
"noquotes",
"octocat",
"onequote",
"pivottrend",
"trendline",
"webp"
]
}
}
},
"postCreateCommand": "dotnet restore"
}
1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ exclude:
"GemFile",
"node_modules",
"vendor",
".devcontainer"
]

include:
Expand Down

0 comments on commit 9baa3ad

Please sign in to comment.