Skip to content

Commit cb12e46

Browse files
committed
chore: wip
1 parent cc722a3 commit cb12e46

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

eslint.config.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import type { ESLintConfig } from '@stacksjs/eslint-config'
2+
import stacks from '@stacksjs/eslint-config'
3+
4+
const config: ESLintConfig = stacks({
5+
stylistic: {
6+
indent: 2,
7+
quotes: 'single',
8+
},
9+
10+
typescript: true,
11+
jsonc: true,
12+
yaml: true,
13+
14+
rules: {
15+
'no-console': 'off',
16+
'no-alert': 'off',
17+
'regexp/no-super-linear-backtracking': 'off',
18+
},
19+
20+
ignores: [
21+
'docs/**',
22+
'fixtures/**',
23+
'**/*.md',
24+
'packages/benchmarks/**',
25+
'packages/collections/**',
26+
'**/.stx/cache/**',
27+
],
28+
})
29+
30+
export default config

0 commit comments

Comments
 (0)