Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into esm
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriiis committed Jul 3, 2023
2 parents 2277dea + 5c1affa commit d3fec33
Show file tree
Hide file tree
Showing 8 changed files with 2,436 additions and 4,881 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
lint:
uses: yoriiis/actions/.github/workflows/lint.yml@main
with:
stylelint-status: false
eslint-config: 'config/.eslintrc.cjs'
9 changes: 9 additions & 0 deletions .markdownlint-cli2.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
config: {
MD013: false, // Line length
MD024: false, // Multiple headers with the same content
MD033: false, // No inline HTML
MD036: false // Emphasis used instead of a heading
},
ignores: ['**/node_modules/**', '.github/PULL_REQUEST_TEMPLATE.md']
};
4 changes: 0 additions & 4 deletions .markdownlint.yml

This file was deleted.

12 changes: 10 additions & 2 deletions chunks-webpack-plugin.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,25 @@
"editor.tabSize": 4,
"editor.rulers": [100]
},
"[yaml]": {
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.autoIndent": "none"
},
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json"
"*.json": "json",
"*.yaml": "yaml",
"*.yml": "yaml"
},
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true
},
"files.eol": "\n"
"files.eol": "\n"
},
"extensions": {
"recommendations": [
Expand Down
4 changes: 3 additions & 1 deletion config/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,7 @@ module.exports = {
globals: {
document: false,
window: false
}
},

ignorePatterns: ['node_modules', 'coverage', 'dist', 'lib', 'types']
};
Loading

0 comments on commit d3fec33

Please sign in to comment.