-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add linter * linter fixes * final fix
- Loading branch information
Showing
24 changed files
with
776 additions
and
945 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
########################### | ||
########################### | ||
## Markdown Linter rules ## | ||
########################### | ||
########################### | ||
|
||
# Linter rules doc: | ||
# - https://github.com/DavidAnson/markdownlint | ||
# | ||
# Note: | ||
# To comment out a single error: | ||
# <!-- markdownlint-disable --> | ||
# any violations you want | ||
# <!-- markdownlint-restore --> | ||
# | ||
|
||
############### | ||
# Rules by id # | ||
############### | ||
MD013: false # Line length is usually not important and the 80 char limit is way too small anyway | ||
MD026: false # Trailing punctuation in header | ||
MD033: false # Inline HTML is important for multilines and checkboxes within markdown tables | ||
MD034: false # no-bare-urls Bare URL used | ||
MD029: false # Markdown automatically calculates the ordered list order |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"extends": ["stylelint-config-standard-scss"], | ||
"rules": { | ||
"keyframes-name-pattern": null, | ||
"at-rule-no-unknown": null, | ||
"declaration-empty-line-before": null, | ||
"number-leading-zero": null, | ||
"color-function-notation": null, | ||
"no-descending-specificity": null, | ||
"selector-class-pattern": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Linter | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
linter: | ||
name: Lint Code Base | ||
runs-on: ubuntu-latest | ||
permissions: | ||
statuses: write # for github/super-linter/slim to mark status of each linter run | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- name: Lint Code Base | ||
uses: github/super-linter/slim@45fc0d88288beee4701c62761281edfee85655d7 # v5.0.0 | ||
|
||
env: | ||
VALIDATE_ALL_CODEBASE: false | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# Markdown lint complains about the issue templates | ||
FILTER_REGEX_EXCLUDE: .github/ISSUE_TEMPLATE/* | ||
VALIDATE_YAML: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Thanks for your interest in this project. | |
|
||
## Project description | ||
|
||
blog.adoptium.net is a project to regroup assets for the Eclipse Foundation look and feel. | ||
blog.adoptium.net is a project to regroup assets for the Eclipse Foundation look and feel. | ||
|
||
* https://github.com/adoptium/dash.adoptium.net | ||
|
||
|
@@ -32,4 +32,4 @@ https://www.eclipse.org/projects/handbook/#resources-commit | |
|
||
## Contact | ||
|
||
Contact the Eclipse Foundation Webdev team via [email protected]. | ||
Contact the Eclipse Foundation Webdev team via [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
|
Oops, something went wrong.