This commit is contained in:
ch197511161
2025-12-11 02:09:07 +08:00
parent 54d6acbce3
commit aaaf08e8f3
84 changed files with 4131 additions and 0 deletions

12
prettier-config/index.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
semi: false,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
printWidth: 100,
arrowParens: 'avoid',
endOfLine: 'lf',
bracketSpacing: true,
jsxBracketSameLine: false,
proseWrap: 'preserve',
}

View File

@@ -0,0 +1,16 @@
{
"name": "@nuxt4crud/prettier-config",
"version": "1.0.0",
"description": "Prettier configuration for Nuxt4CRUD project",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"prettier",
"config",
"nuxt4",
"crud"
],
"license": "MIT"
}