diff options
author | Pauline <git@ethanlibs.co> | 2023-12-20 01:58:22 -0500 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2023-12-20 01:58:22 -0500 |
commit | 8e85be96a154b371b4cf1fb1924155d96150f949 (patch) | |
tree | 22edab0f259bbdba76d1c8fb790ff2c6cf65db60 /eslint.config.js | |
parent | 64537e64852193cb735ee4853c0f8d07a5222030 (diff) | |
download | Nexus-8e85be96a154b371b4cf1fb1924155d96150f949.tar.gz Nexus-8e85be96a154b371b4cf1fb1924155d96150f949.tar.bz2 Nexus-8e85be96a154b371b4cf1fb1924155d96150f949.zip |
chore(lint): bump deps and fix linting/format
Diffstat (limited to 'eslint.config.js')
-rw-r--r-- | eslint.config.js | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/eslint.config.js b/eslint.config.js index 04d3146..015078e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,12 +1,11 @@ import petal from '@flowr/eslint-config'; export default petal({ - // broken for some reason - astro: false, - // broken for some reason + astro: true, react: false, typescript: true, gitignore: true, + toml: false, ignores: [ '**/target', '**/dist', @@ -20,6 +19,14 @@ export default petal({ 'packages/client/src/core.ts', 'apps/desktop/src/commands.ts', '**/.next/**', - '**/*.astro', ], + overrides: { + astro: { + 'style/jsx-one-expression-per-line': 'off', + 'style/jsx-indent': 'off', + 'style/jsx-closing-bracket-location': 'off', + 'style/jsx-tag-spacing': 'off', + 'style/indent': 'off', + }, + }, }); |