statistiques/eslint.config.mjs

15 lines
353 B
JavaScript
Raw Permalink Normal View History

2024-06-02 12:34:08 +00:00
import pluginJs from "@eslint/js";
import prettier from "eslint-config-prettier";
import globals from "globals";
import tseslint from "typescript-eslint";
export default [
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
prettier,
{
2024-12-17 16:38:59 +00:00
ignores: [".yarn/*", "dist/*"],
2024-06-02 12:34:08 +00:00
},
];