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 { fileURLToPath } from "url";
|
||||
import { FlatCompat } from "@eslint/eslintrc";
|
||||
import mdx from 'eslint-plugin-mdx'
|
||||
import { FlatCompat } from '@eslint/eslintrc'
|
||||
import markdown from '@eslint/markdown'
|
||||
import { dirname } from 'path'
|
||||
import { fileURLToPath } from 'url'
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = dirname(__filename);
|
||||
const __filename = fileURLToPath(import.meta.url)
|
||||
const __dirname = dirname(__filename)
|
||||
|
||||
const compat = new FlatCompat({
|
||||
baseDirectory: __dirname,
|
||||
});
|
||||
})
|
||||
|
||||
const eslintConfig = [
|
||||
...compat.extends("next/core-web-vitals", "next/typescript"),
|
||||
...compat.extends('next/core-web-vitals', 'next/typescript'),
|
||||
{
|
||||
ignores: [
|
||||
"node_modules/**",
|
||||
".next/**",
|
||||
"out/**",
|
||||
"build/**",
|
||||
"next-env.d.ts",
|
||||
'node_modules/**',
|
||||
'.next/**',
|
||||
'out/**',
|
||||
'build/**',
|
||||
'next-env.d.ts',
|
||||
],
|
||||
},
|
||||
{
|
||||
...mdx.flat,
|
||||
files: ['**/*.{md,mdx}'],
|
||||
},
|
||||
{
|
||||
files: ['**/*.md'],
|
||||
...markdown.configs.recommended,
|
||||
}
|
||||
];
|
||||
},
|
||||
]
|
||||
|
||||
export default eslintConfig;
|
||||
export default eslintConfig
|
||||
|
||||
Reference in New Issue
Block a user