mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-09 22:40:42 +00:00
11154bf03d
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
23 lines
593 B
JavaScript
23 lines
593 B
JavaScript
import eslint from "@eslint/js";
|
|
import globals from "globals";
|
|
import babelParser from "@babel/eslint-parser";
|
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
|
|
export default [
|
|
eslint.configs.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
},
|
|
parser: babelParser,
|
|
ecmaVersion: 2022,
|
|
sourceType: "module",
|
|
parserOptions: {
|
|
requireConfigFile: false,
|
|
},
|
|
},
|
|
},
|
|
eslintPluginPrettierRecommended,
|
|
];
|