Skip to content

Commit

Permalink
chore(deps): upgrade to eslint v9
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed May 15, 2024
1 parent 316741b commit ffe6dd0
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 216 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Release Please
uses: google-github-actions/[email protected]
uses: googleapis/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

import stylistic from "@stylistic/eslint-plugin-js";
import jsdoc from "eslint-plugin-jsdoc";
import markdownPlugin from "eslint-plugin-markdown";

export default {
languageOptions: {
parserOptions: {
ecmaVersion: "latest",
sourceType: "module"
},
},
plugins: {
"@stylistic/js": stylistic.configs["all-flat"],
"plugin:markdown/recommended": markdownPlugin.configs.recommended,
"jsdoc": jsdoc.configs.recommended,
},
rules: {
"jsdoc/require-file-overview": "off"
}
}
Loading

0 comments on commit ffe6dd0

Please sign in to comment.