db66e5279b
new file: begushiybashkir/vue/bashrunclub/.gitattributes new file: begushiybashkir/vue/bashrunclub/.gitignore new file: begushiybashkir/vue/bashrunclub/.prettierrc.json new file: begushiybashkir/vue/bashrunclub/.vscode/extensions.json new file: begushiybashkir/vue/bashrunclub/README.md new file: begushiybashkir/vue/bashrunclub/eslint.config.js new file: begushiybashkir/vue/bashrunclub/index.html new file: begushiybashkir/vue/bashrunclub/jsconfig.json new file: begushiybashkir/vue/bashrunclub/package.json new file: begushiybashkir/vue/bashrunclub/public/favicon.ico new file: begushiybashkir/vue/bashrunclub/src/App.vue new file: begushiybashkir/vue/bashrunclub/src/components/common/Footer.vue new file: begushiybashkir/vue/bashrunclub/src/components/common/Header.vue new file: begushiybashkir/vue/bashrunclub/src/components/common/Navigation.vue new file: begushiybashkir/vue/bashrunclub/src/main.js new file: begushiybashkir/vue/bashrunclub/src/router/index.js new file: begushiybashkir/vue/bashrunclub/src/stores/auth.js new file: begushiybashkir/vue/bashrunclub/src/stores/counter.js new file: begushiybashkir/vue/bashrunclub/src/views/About.vue new file: begushiybashkir/vue/bashrunclub/src/views/Achivements.vue new file: begushiybashkir/vue/bashrunclub/src/views/Gallery.vue new file: begushiybashkir/vue/bashrunclub/src/views/Home.vue new file: begushiybashkir/vue/bashrunclub/src/views/Login.vue new file: begushiybashkir/vue/bashrunclub/src/views/Members.vue new file: begushiybashkir/vue/bashrunclub/src/views/News.vue new file: begushiybashkir/vue/bashrunclub/src/views/Profile.vue new file: begushiybashkir/vue/bashrunclub/src/views/Register.vue new file: begushiybashkir/vue/bashrunclub/src/views/Reviews.vue new file: begushiybashkir/vue/bashrunclub/src/views/Training.vue new file: begushiybashkir/vue/bashrunclub/vite.config.js new file: begushiybashkir/vue/package-lock.json new file: begushiybashkir/vue/package.json start new BegushiyBashkir club project on vue3
27 lines
596 B
JavaScript
27 lines
596 B
JavaScript
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
import globals from 'globals'
|
|
import js from '@eslint/js'
|
|
import pluginVue from 'eslint-plugin-vue'
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
export default defineConfig([
|
|
{
|
|
name: 'app/files-to-lint',
|
|
files: ['**/*.{js,mjs,jsx,vue}'],
|
|
},
|
|
|
|
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
|
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
},
|
|
},
|
|
},
|
|
|
|
js.configs.recommended,
|
|
...pluginVue.configs['flat/essential'],
|
|
skipFormatting,
|
|
])
|