Skip to content
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,5 +1,6 @@
{
"version": "0.2",
"dictionaries": ["svg"],
"words": [
"clangd",
"CODEOWNERS",
Expand Down Expand Up @@ -47,7 +48,6 @@
"blacklist",
"grandfathered",
"grey",
"hte",
"slave",
"whitelist"
],
Expand Down
8 changes: 0 additions & 8 deletions .eslintignore

This file was deleted.

9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
"extends": [
"prettier"
],
"ignorePatterns": [
"*.min.js",
"*.html",
"*.json",
"build/*",
"node_modules/*",
"public/*",
"resources/*"
],
"rules": {
"curly": 0,
"no-invalid-this": 0,
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: "Check spelling"
on:
pull_request:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
statuses: write # for github/super-linter/slim to mark status of each linter run
name: Lint Code Base
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}

steps:
- name: Checkout Code
Expand All @@ -27,9 +28,13 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: Install npm dependencies
run: npm ci

- name: Lint Code Base
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
env:
CSS_FILE_NAME: "stylelint.config.mjs"
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
Expand All @@ -40,7 +45,6 @@ jobs:
VALIDATE_BIOME_FORMAT: false
VALIDATE_BIOME_LINT: false
VALIDATE_CHECKOV: false
VALIDATE_CSS: false
VALIDATE_EDITORCONFIG: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_HTML: false
Expand Down
4 changes: 4 additions & 0 deletions .htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
"attr-unsafe-chars": true,
"attr-value-double-quotes": false,
"attr-value-not-empty": false,
"button-type-require": true,
"doctype-first": false,
"doctype-html5": true,
"frame-title-require": true,
"head-script-disabled": false,
"href-abs-or-rel": false,
"html-lang-require": true,
Expand All @@ -15,9 +17,11 @@
"id-unique": false,
"inline-script-disabled": false,
"inline-style-disabled": false,
"main-require": true,
"spec-char-escape": false,
"src-not-empty": true,
"style-disabled": false,
"tag-no-obsolete": true,
"tag-pair": false,
"tag-self-close": false,
"tagname-lowercase": true,
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.cspell.json
*.min.*
*.html
3 changes: 0 additions & 3 deletions .stylelintignore

This file was deleted.

Loading
Loading