-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from reupen/dependabot/npm_and_yarn/eslint-3e3…
…76dc062 Bump the eslint group across 1 directory with 3 updates
- Loading branch information
Showing
8 changed files
with
373 additions
and
354 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
// @ts-check | ||
|
||
import eslint from "@eslint/js" | ||
import eslintConfigPrettier from "eslint-config-prettier" | ||
import eslintPluginAstro from "eslint-plugin-astro" | ||
import jsxA11y from "eslint-plugin-jsx-a11y" | ||
import tseslint from "typescript-eslint" | ||
|
||
export default tseslint.config({ | ||
ignores: [".astro", "src/env.d.ts"], | ||
extends: [ | ||
eslint.configs.recommended, | ||
tseslint.configs.recommended, | ||
tseslint.configs.stylistic, | ||
eslintPluginAstro.configs.recommended, | ||
jsxA11y.flatConfigs.recommended, | ||
eslintConfigPrettier, | ||
], | ||
}) |
Oops, something went wrong.