mirror of
https://github.com/ad-aures/castopod.git
synced 2026-03-31 05:19:02 +02:00
23 lines
526 B
JavaScript
23 lines
526 B
JavaScript
import globals from "globals";
|
|
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
|
|
export default [
|
|
...tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.strict,
|
|
eslintPluginPrettierRecommended
|
|
),
|
|
{
|
|
ignores: ["public/*", "docs/*", "vendor/*", "castopod/*"],
|
|
},
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
];
|