Skip to content

Commit

Permalink
Update Workflow configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmohns committed Aug 22, 2024
1 parent 90633fe commit 5da98c6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 18 deletions.
1 change: 0 additions & 1 deletion .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ config:
line-length: false
no-inline-html: false
first-line-h1: false
code-block-style: false # conflicts with MkDocs Admontions: https://squidfunk.github.io/mkdocs-material/reference/admonitions/
code-fence-style:
style: backtick

Expand Down
11 changes: 4 additions & 7 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 4,
"useTabs": false
}

"semi": false,
"trailingComma": "es5",
"useTabs": false
}
20 changes: 10 additions & 10 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const js = require('@eslint/js')
const js = require("@eslint/js")

module.exports = [
js.configs.recommended,
js.configs.recommended,

{
rules: {
'no-unused-vars': 'off',
'no-undef': 'off',
},
},
{
ignores: ['test/*', 'lib/*'],
{
rules: {
"no-unused-vars": "off",
"no-undef": "off",
},
},
{
ignores: ["test/*", "lib/*"],
},
]

0 comments on commit 5da98c6

Please sign in to comment.