source: ReserveNGo-frontend/eslint.config.js@ b09655a

Last change on this file since b09655a was 590f667, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago

Added Initial frontend

  • Property mode set to 100644
File size: 573 bytes
Line 
1import js from '@eslint/js'
2import pluginVue from 'eslint-plugin-vue'
3import pluginVitest from '@vitest/eslint-plugin'
4import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
5
6export default [
7 {
8 name: 'app/files-to-lint',
9 files: ['**/*.{js,mjs,jsx,vue}'],
10 },
11
12 {
13 name: 'app/files-to-ignore',
14 ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
15 },
16
17 js.configs.recommended,
18 ...pluginVue.configs['flat/essential'],
19
20 {
21 ...pluginVitest.configs.recommended,
22 files: ['src/**/__tests__/*'],
23 },
24 skipFormatting,
25]
Note: See TracBrowser for help on using the repository browser.