diff options
| author | ache <ache@ache.one> | 2025-08-16 06:46:45 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2025-08-16 06:46:45 +0200 |
| commit | abcbc90c67244e990033ad2aac4cc66eedbe76d8 (patch) | |
| tree | ad2a2766bea3a8b905c6e1b1f6ecd7096c0ec612 | |
| parent | Update plugin version (diff) | |
Add linter rules🪵
| -rw-r--r-- | eslint.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..356b47b --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,11 @@ +// eslint.config.js +const { defineConfig } = require("eslint/config"); + +module.exports = defineConfig([ + { + rules: { + semi: "error", + "prefer-const": "error", + }, + }, +]); |