Skip to content

Commit

Permalink
fix(eslint-config-airlight-base): fix @stylistic preset
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Aug 15, 2024
1 parent 49204c4 commit f142d30
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/eslint-config-base/legacy.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,19 @@ module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'@stylistic',
'plugin:@eslint-community/eslint-comments/recommended',
'plugin:promise/recommended',
'prettier',
'plugin:import-x/recommended',
'plugin:import-x/typescript'
],
plugins: ['@typescript-eslint', 'promise', 'optimize-regex', 'no-secrets'],
plugins: [
'@typescript-eslint',
'@stylistic',
'promise',
'optimize-regex',
'no-secrets'
],
rules: {
...airbnbRules,
...rules
Expand Down

0 comments on commit f142d30

Please sign in to comment.