Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General changes and updates #1

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"language": "en",
"words": [],
"words": ["Loruki", "Nepo", "randomizer"],
"ignorePaths": [
"node_modules/**",
"student-bios/**",
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/help-wanted.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about:
A template issue for when you're blocked on certain lines of code. This
template has a lot of sections to get you thinking about your question, you
don't need to fill in every one of them
title: "(describe what is blocking you)"
title: '(describe what is blocking you)'
labels: help-wanted
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about:
A template issue for topics you'd like to discuss or learn more about.
specific topics, general knowledge, it does not even need to be about code.
There are no bad questions!
title: ""
title: ''
labels: question
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/vocab-and-snippets.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: vocab or snippet
about: A template PR for vocab and snippets
title: "Vocabulary or Snippets: description"
title: 'Vocabulary or Snippets: description'
---

<!--
Expand Down
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

<!-- describe your PR -->

## Description

<!-- A clear and concise description of what the Pull Request is about. -->

## Checklists

### General Checks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- run: npm install
- run: npm run format:check
Expand Down
28 changes: 26 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules

# Generated by MAC users
**/.DS_Store

# Optional npm cache directory
.npm

# Generated from accessibility validation
accessibility_report

# Github token
github_token
.DS_Store
.vscode/settings.json
24 changes: 14 additions & 10 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
// MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
"MD001": true,

// Deprecated and disabled
// MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
"MD002": {
// Heading level
"level": 1
},
// "MD002": {
// // Heading level
// "level": 1
// },

// MD003/heading-style/header-style - Heading style
"MD003": {
Expand All @@ -28,8 +29,9 @@
// MD005/list-indent - Inconsistent indentation for list items at the same level
"MD005": true,

// Deprecated and disabled
// MD006/ul-start-left - Consider starting bulleted lists at the beginning of the line
"MD006": true,
// "MD006": true,

// MD007/ul-indent - Unordered list indentation
"MD007": {
Expand Down Expand Up @@ -116,9 +118,9 @@
// MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
"MD024": {
// Only check sibling headings
"allow_different_nesting": false,
"allow_different_nesting": true,
// Only check sibling headings
"siblings_only": false
"siblings_only": true
},

// MD025/single-title/single-h1 - Multiple top-level headings in the same document
Expand Down Expand Up @@ -187,7 +189,9 @@
"tr",
"th",
"code",
"hr"
"hr",
"your",
"human-name"
]
},

Expand Down Expand Up @@ -230,7 +234,7 @@
"MD042": true,

// MD043/required-headings/required-headers - Required heading structure
"MD043": true,
"MD043": false,

// MD044/proper-names - Proper names should have the correct capitalization
"MD044": {
Expand All @@ -254,7 +258,7 @@

// MD048/code-fence-style - Code fence style
"MD048": {
// Code fence syle
// Code fence style
"style": "consistent"
}
}
3 changes: 3 additions & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
35 changes: 35 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"mhutchie.git-graph",
"donjayamanne.githistory",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"anteprimorac.html-end-tag-labels",
"ritwickdey.liveserver",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"alefragnani.project-manager",
"stylelint.vscode-stylelint",
"vscode-icons-team.vscode-icons",
"alefragnani.bookmarks",
"bierner.markdown-preview-github-styles",
"ecmel.vscode-html-css",
"htmlhint.vscode-htmlhint",
"pranaygp.vscode-css-peek",
"zignd.html-css-class-completion",
"juanallo.vscode-dependency-cruiser",
"visualstudioexptteam.vscodeintellicode",
"aaron-bond.better-comments",
"christian-kohler.path-intellisense",
"ms-vsliveshare.vsliveshare"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
117 changes: 117 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
{
// https://vscode-docs.readthedocs.io/en/stable/customization/userandworkspace/#default-settings
//-------- Editor configuration --------

// Controls auto save of editors that have unsaved changes.: https://code.visualstudio.com/docs/editor/codebasics#_save-auto-save
"files.autoSave": "onFocusChange",

// Format a file on save. A formatter must be available.
"editor.formatOnSave": true,

// Controls whether the editor should automatically format the pasted content. A formatter must be available.
"editor.formatOnPaste": true,

// Controls whether the editor should render indent quides
"editor.guides.indentation": true,

// Controls whether the editor should highlight the active indent guide.
"editor.guides.highlightActiveIndentation": true,

// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 2,

// Defines a default formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter
"editor.defaultFormatter": "esbenp.prettier-vscode",

// Controls bracket pair colorization is enabled or not
"editor.bracketPairColorization.enabled": true,

// Controls whether bracket pair guides are enabled or not. (true, active, false)
"editor.guides.bracketPairs": "active",

// Controls whether horizontal bracket pair guides are enabled or not.
"editor.guides.bracketPairsHorizontal": "active",

// Controls whether the editor should highlight the active bracket pair.
"editor.guides.highlightActiveBracketPair": true,

// Controls whether the editor has linked editing enabled.
"editor.linkedEditing": true,

//-------- HTML configuration --------

// Enable/disable auto closing of HTML tags
"html.autoClosingTags": true,

// Configures if the built-in HTML language suggests HTML5 tags, properties and values.
"html.suggest.html5": true,

// Defines a default HTML formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},

//-------- Emmet configuration --------

// Enables completion when you are writing Emmet appreveation.
"html-css-class-completion.enableEmmetSupport": true,

//-------- JavaScript configuration --------

// Enable/disable auto closing of JSX tags.
"javascript.autoClosingTags": true,

// Enable/disable auto import suggestions.
"javascript.suggest.autoImports": true,

// Enable/disable automatic updating of import paths when you rename or move a file in VS Code.
"javascript.updateImportsOnFileMove.enabled": "always",

// Enable/disable suggestoins for paths in import statement and require calls. (change it to false to be able to use Path Intellisense extension)
"javascript.suggest.paths": false,

//-------- TypeScript configuration --------

// Enable/disable auto closing of JSX tags.
"typescript.autoClosingTags": true,

// Enable/disable auto import suggestions.
"typescript.suggest.autoImports": true,

// Enable/disable automatic updating of import paths when you rename or move a file in VS Code.
"typescript.updateImportsOnFileMove.enabled": "always",

// Enable/disable suggestoins for paths in import statement and require calls. (change it to false to be able to use Path Intellisense extension)
"typescript.suggest.paths": false,

//-------- Work Bench configuration --------

// Controls whether a top border is drawn on tabs for editors that have unsaved changes.
"workbench.editor.highlightModifiedTabs": true,

//-------- Files configuration --------

// When enabled, will trim all new lines after the final new line at the end of the file when saving it.
"files.trimFinalNewlines": true,

// When enabled, insert a new final line at the end of the file when saving it.
"files.insertFinalNewline": true,

//-------- Live Server configuration --------

// Set Custom Port Number of Live Server. Set 0 if you want random port.
"liveServer.settings.port": 5504,

//-------- Markdown configuration --------

// Enable path suggestoins while writing links in markdown files
"markdown.suggest.paths.enabled": true,

// Defines a default markdown formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},

// Enable/disable update table of contents on save
"markdown.extension.toc.updateOnSave": false
}
Loading