Skip to content

Commit

Permalink
chore: make biome.js ignore dist dir
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmDevs authored and PalmDevs committed Mar 18, 2024
1 parent c46e0f0 commit 3ed3503
Showing 1 changed file with 45 additions and 42 deletions.
87 changes: 45 additions & 42 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,47 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"javascript": {
"formatter": {
"bracketSpacing": true,
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"quoteStyle": "double",
"trailingComma": "none"
}
},
"linter": {
"rules": {
"complexity": {
"noForEach": "off"
},
"correctness": {
"noChildrenProp": "off"
},
"performance": {
"noDelete": "off"
},
"recommended": true,
"style": {
"noCommaOperator": "off",
"noNonNullAssertion": "off",
"noParameterAssign": "off"
},
"suspicious": {
"noAssignInExpressions": "off",
"noExplicitAny": "off"
},
"security": {
"noGlobalEval": "off"
}
}
},
"organizeImports": {
"enabled": true
}
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"files": {
"ignore": ["dist/**"]
},
"javascript": {
"formatter": {
"bracketSpacing": true,
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"quoteStyle": "double",
"trailingComma": "none"
}
},
"linter": {
"rules": {
"complexity": {
"noForEach": "off"
},
"correctness": {
"noChildrenProp": "off"
},
"performance": {
"noDelete": "off"
},
"recommended": true,
"style": {
"noCommaOperator": "off",
"noNonNullAssertion": "off",
"noParameterAssign": "off"
},
"suspicious": {
"noAssignInExpressions": "off",
"noExplicitAny": "off"
},
"security": {
"noGlobalEval": "off"
}
}
},
"organizeImports": {
"enabled": true
}
}

0 comments on commit 3ed3503

Please sign in to comment.