๐Ÿ“ฆ directus / rstore

๐Ÿ“„ eslint.config.mjs ยท 24 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24// @ts-check
import antfu from '@antfu/eslint-config'

export default antfu({
  ignores: [
    '**/.nitro',
    'docs/guide/migration/**',
  ],
  rules: {
    'vue/object-property-newline': ['error', {
      allowAllPropertiesOnSameLine: false,
    }],
    'no-console': 'error',
  },
}, {
  files: [
    'docs/**/*',
    'scripts/**/*.js',
  ],
  rules: {
    'no-console': 'off',
  },
})