Skip to content

Commit

Permalink
chore: use prettierignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdvlpr committed Oct 30, 2024
1 parent ca551dc commit 2a9e512
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
64 changes: 64 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
.DS_Store
.thumbs.db
node_modules

# Quasar core related directories
.quasar
/dist
/quasar.config.*.temporary.compiled*

# Cordova related directories and files
/src-cordova/node_modules
/src-cordova/platforms
/src-cordova/plugins
/src-cordova/www

# Capacitor related directories and files
/src-capacitor/www
/src-capacitor/node_modules

# BEX related directories and files
/src-bex/www
/src-bex/js/core

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
*.suo
*.ntvs*
*.njsproj
*.sln

# local .env files
.env*
!.env.example

# Sentry Config File
.env.sentry-build-plugin

# Yarn files
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.yarn/install-state.gz

# VitePress
docs/.vitepress/dist
docs/.vitepress/cache

# Output of 'yarn icons'
src/css/mmm-icons.*

# Custom dep helper script
depChecker.js

# Generated files
LICENCE.md
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"format": "prettier \"**/*\" --ignore-path .gitignore --ignore-unknown --write",
"format": "prettier \"**/*\" --ignore-unknown --write",
"lint": "eslint --ext .js,.ts,.mjs,.mts,.vue ./",
"type-check": "vue-tsc --noEmit -p tsconfig.vue-tsc.json",
"test": "echo \"No test specified\" && exit 0"
Expand Down

0 comments on commit 2a9e512

Please sign in to comment.