diff options
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', + }, + }, }); |