mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
29 lines
667 B
JavaScript
29 lines
667 B
JavaScript
// @ts-check
|
|
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
|
|
export default tseslint.config(
|
|
{
|
|
ignores: [
|
|
"**/node_modules/",
|
|
"**/dist/",
|
|
"**/build/",
|
|
"**/assets/",
|
|
"**/out/",
|
|
"**/coverage/",
|
|
"**/lib/",
|
|
"**/esm/",
|
|
"**/cjs/",
|
|
"**/playwright-report/",
|
|
"**/playwright-coverage/",
|
|
"**/playwright-screenshots/",
|
|
"**/playwright-videos",
|
|
"webpack.config.js",
|
|
],
|
|
},
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
eslintPluginPrettierRecommended,
|
|
);
|