summaryrefslogtreecommitdiff
path: root/eslint.config.js
diff options
context:
space:
mode:
authorEvan Senter <[email protected]>2025-04-19 19:45:42 +0100
committerGitHub <[email protected]>2025-04-19 19:45:42 +0100
commit3fce6cea27d3e6129d6c06e528b62e1b11bf7094 (patch)
tree244b8e9ab94f902d65d4bda8739a6538e377ed17 /eslint.config.js
parent0c9e1ef61be7db53e6e73b7208b649cd8cbed6c3 (diff)
Starting to modularize into separate cli / server packages. (#55)
* Starting to move a lot of code into packages/server * More of the massive refactor, builds and runs, some issues though. * Fixing outstanding issue with double messages. * Fixing a minor UI issue. * Fixing the build post-merge. * Running formatting. * Addressing comments.
Diffstat (limited to 'eslint.config.js')
-rw-r--r--eslint.config.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/eslint.config.js b/eslint.config.js
index c5ecac46..ae924cc7 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -16,7 +16,12 @@ import globals from 'globals';
export default tseslint.config(
{
// Global ignores
- ignores: ['node_modules/**', 'eslint.config.js', 'packages/cli/dist/**'],
+ ignores: [
+ 'node_modules/**',
+ 'eslint.config.js',
+ 'packages/cli/dist/**',
+ 'packages/server/dist/**',
+ ],
},
eslint.configs.recommended,
...tseslint.configs.recommended,