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

🩹 [Patch]: New process alignment #9

Merged
merged 2 commits into from
Mar 26, 2024
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
25 changes: 25 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
###########################
## Markdown Linter rules ##
###########################

# Linter rules doc:
# - https://github.com/DavidAnson/markdownlint

###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007:
indent: 2 # Unordered list indentation
MD013:
line_length: 808 # Line length
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD036: false # Emphasis used instead of a heading

#################
# Rules by tags #
#################
blank_lines: false # Error on blank lines
25 changes: 25 additions & 0 deletions .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Linter

run-name: "Linter - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on: [pull_request]

permissions:
contents: read
packages: read
statuses: write # To report GitHub Actions status checks

jobs:
Lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Lint code base
uses: super-linter/super-linter@latest
env:
GITHUB_TOKEN: ${{ github.token }}
1 change: 1 addition & 0 deletions .github/workflows/Process-PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ concurrency:
permissions:
contents: write
pull-requests: write
statuses: write

jobs:
Process-PSModule:
Expand Down
6 changes: 0 additions & 6 deletions .vscode/extensions.json

This file was deleted.

81 changes: 0 additions & 81 deletions .vscode/settings.json

This file was deleted.

18 changes: 1 addition & 17 deletions src/WoW/WoW.psd1
Original file line number Diff line number Diff line change
@@ -1,19 +1,3 @@
@{
ModuleVersion = '0.0.1'
Description = 'This module is for working with settings and addons in WoW with PowerShell'
HelpInfoURI = 'https://PSModule.github.io/WoW'
PrivateData = @{
PSData = @{
Tags = @(
'WoW'
'retail'
'Games'
'Multiboxing'
)
LicenseUri = 'https://github.com/PSModule/WoW/blob/main/LICENSE'
ProjectUri = 'https://github.com/PSModule/WoW'
IconUri = 'https://raw.githubusercontent.com/PSModule/WoW/main/icon/icon.png'
}
}
ModuleVersion = '0.0.0'
}

2 changes: 0 additions & 2 deletions src/WoW/private/Core/Write-WoWWarning.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#Requires -Version 7.0

Function Write-WoWWarning {
<#
.SYNOPSIS
Expand Down
7 changes: 0 additions & 7 deletions src/WoW/scripts/Initialize.ps1

This file was deleted.

Loading