From 61ae6cced8e9ea412ff6f4c2cc3ba5ec7bc001a5 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Mon, 5 May 2025 11:14:07 +0800 Subject: [PATCH] chore(dev-deps): add eslint config file --- _config.yml | 2 +- eslint.config.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 eslint.config.js diff --git a/_config.yml b/_config.yml index d6f84c578..0a78679d2 100644 --- a/_config.yml +++ b/_config.yml @@ -213,7 +213,7 @@ exclude: - README.md - LICENSE - purgecss.js - - rollup.config.js + - "*.config.js" - "package*.json" jekyll-archives: diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 000000000..c8f6d53d4 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,5 @@ +export default [ + { + files: ['_javascript/**/*.js'] + } +];