A Miiverse-themed Bluesky client
842 B
41 lines
1import antfu from '@antfu/eslint-config'
2import withNuxt from './.nuxt/eslint.config.mjs'
3
4export default withNuxt(
5 {
6 ignores: [
7 '.azuredevops',
8 'android',
9 'ios',
10 'public',
11 'shared/types/**/generated',
12 'server/utils/connectors/tenant/**/generated',
13 'preset/generated',
14 ],
15 },
16 antfu({
17 typescript: true,
18 formatters: {
19 css: true,
20 },
21 }),
22 {
23 rules: {
24 'style/brace-style': ['error', '1tbs', { allowSingleLine: false }],
25 'vue/max-attributes-per-line': ['error', {
26 singleline: {
27 max: 1,
28 },
29 multiline: {
30 max: 1,
31 },
32 }],
33 'unused-imports/no-unused-vars': ['error', {
34 args: 'none',
35 caughtErrors: 'none',
36 ignoreRestSiblings: true,
37 vars: 'all',
38 }],
39 },
40 },
41)