Skip to content

Commit 15e8033

Browse files
committed
Setting sail: Initial commit!
0 parents  commit 15e8033

13 files changed

+1428
-0
lines changed

.editorconfig

Lines changed: 623 additions & 0 deletions
Large diffs are not rendered by default.

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Auto-detect text files, ensure they use LF.
2+
* text=auto eol=lf working-tree-encoding=UTF-8
3+
4+
# Bash scripts
5+
*.sh text eol=lf

.github/_typos.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Typos configuration file
2+
#
3+
# Info: https://github.com/marketplace/actions/typos-action
4+
# Install: brew install typos-cli
5+
# Install: conda install typos
6+
# Run: typos -c .github/_typos.toml
7+
8+
[files]
9+
extend-exclude = [
10+
"_typos.toml",
11+
"package-lock.json",
12+
"*.bicep",
13+
]
14+
15+
[default.extend-words]
16+
ACI = "ACI" # Azure Container Instance
17+
18+
[default.extend-identifiers]
19+
ags = "ags" # Azure Graph Service
20+
21+
[type.jupyter]
22+
extend-ignore-re = [
23+
'"[A-Fa-f0-9]{8}"', # cell id strings
24+
]
25+
26+
[type.msbuild]
27+
extend-ignore-re = [
28+
'Version=".*"', # ignore package version numbers
29+
]

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
day: "sunday"

.github/pull_request_template.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!-- Thank you for your contribution! Please provide the following information -->
2+
## Motivation and Context (Why the change? What's the scenario?)
3+
4+
5+
## High level description (Approach, Design)
6+

.github/workflows/typos.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Check pull requests for typos.
2+
#
3+
# Configuration: .github/_typos.toml
4+
#
5+
# Info: https://github.com/marketplace/actions/typos-action
6+
# Local install: brew install typos-cli
7+
# Local install: conda install typos
8+
# Local run: typos -c .github/_typos.toml
9+
10+
name: Spell Check
11+
12+
on:
13+
workflow_dispatch:
14+
pull_request:
15+
branches: ["main", "feature*"]
16+
17+
jobs:
18+
run:
19+
name: Spell Check with Typos
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Check out code
23+
uses: actions/checkout@v3
24+
25+
- name: Use custom config file
26+
uses: crate-ci/typos@master
27+
with:
28+
config: .github/_typos.toml
29+
write_changes: false

0 commit comments

Comments
 (0)