Skip to content

Commit

Permalink
chore: adjust eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Jan 2, 2025
1 parent f0d4086 commit 6648ec8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This Starter Kit comes pre-configured with the following:
- [Be a Good Commitizen](https://www.npmjs.com/package/git-cz) - pre-configured Commitizen & git-cz setup to simplify semantic git commits, versioning, and changelog generations
- [Built With Testing In Mind](https://bun.sh/docs/cli/test) - pre-configured unit-testing powered by [Bun](https://bun.sh/docs/cli/test)
- [Renovate](https://renovatebot.com/) - optimized & automated PR dependency updates
- [Biome](https://biomejs.dev/) - an instant, fast linter & formatter for JavaScript, TypeScript, and CSS
- [ESLint](https://eslint.org/) - for code linting _(and formatting)_
- [GitHub Actions](https://github.com/features/actions) - runs your CI _(fixes code style issues, tags releases & creates its changelogs, runs the test suite, etc.)_

## Testing
Expand Down
5 changes: 4 additions & 1 deletion eslint.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { ESLintConfig } from '@stacksjs/eslint-config'
import stacks from '@stacksjs/eslint-config'

export default stacks({
const config: ESLintConfig = stacks({
stylistic: {
indent: 2,
quotes: 'single',
Expand All @@ -13,3 +14,5 @@ export default stacks({
'fixtures/**',
],
})

export default config

0 comments on commit 6648ec8

Please sign in to comment.