Skip to content

Commit

Permalink
🩹 [Patch]: New process alignment (#9)
Browse files Browse the repository at this point in the history
## Description

- New process alignment

## Type of change

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [ ] 📖 [Docs]
- [ ] 🪲 [Fix]
- [x] 🩹 [Patch]
- [ ] ⚠️ [Security fix]
- [ ] 🚀 [Feature]
- [ ] 🌟 [Breaking change]

## Checklist

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
  • Loading branch information
MariusStorhaug authored Mar 26, 2024
1 parent 3e01e1d commit 2c45788
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 113 deletions.
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.

0 comments on commit 2c45788

Please sign in to comment.