Test new deployment strategy v2
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 37s
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 37s
This commit is contained in:
@@ -1,35 +1,30 @@
|
|||||||
import { dirname } from "path";
|
import { FlatCompat } from '@eslint/eslintrc'
|
||||||
import { fileURLToPath } from "url";
|
|
||||||
import { FlatCompat } from "@eslint/eslintrc";
|
|
||||||
import mdx from 'eslint-plugin-mdx'
|
|
||||||
import markdown from '@eslint/markdown'
|
import markdown from '@eslint/markdown'
|
||||||
|
import { dirname } from 'path'
|
||||||
|
import { fileURLToPath } from 'url'
|
||||||
|
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url)
|
||||||
const __dirname = dirname(__filename);
|
const __dirname = dirname(__filename)
|
||||||
|
|
||||||
const compat = new FlatCompat({
|
const compat = new FlatCompat({
|
||||||
baseDirectory: __dirname,
|
baseDirectory: __dirname,
|
||||||
});
|
})
|
||||||
|
|
||||||
const eslintConfig = [
|
const eslintConfig = [
|
||||||
...compat.extends("next/core-web-vitals", "next/typescript"),
|
...compat.extends('next/core-web-vitals', 'next/typescript'),
|
||||||
{
|
{
|
||||||
ignores: [
|
ignores: [
|
||||||
"node_modules/**",
|
'node_modules/**',
|
||||||
".next/**",
|
'.next/**',
|
||||||
"out/**",
|
'out/**',
|
||||||
"build/**",
|
'build/**',
|
||||||
"next-env.d.ts",
|
'next-env.d.ts',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
...mdx.flat,
|
|
||||||
files: ['**/*.{md,mdx}'],
|
files: ['**/*.{md,mdx}'],
|
||||||
},
|
|
||||||
{
|
|
||||||
files: ['**/*.md'],
|
|
||||||
...markdown.configs.recommended,
|
...markdown.configs.recommended,
|
||||||
}
|
},
|
||||||
];
|
]
|
||||||
|
|
||||||
export default eslintConfig;
|
export default eslintConfig
|
||||||
|
|||||||
Reference in New Issue
Block a user