mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-09 22:40:42 +00:00
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,
|
||
|
];
|