Skip to content

Commit

Permalink
chore: improved biome.json for root folder (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 authored May 8, 2024
1 parent ee28616 commit cfbcadb
Showing 1 changed file with 2 additions and 80 deletions.
82 changes: 2 additions & 80 deletions configs/biome.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.2/schema.json",
"extends": ["../biome.json"],
"files": {
"include": [
"**/*.js",
"**/*.ts",
"**/*.tsx",
"**/*.jsx",
"**/*.json",
"**/*.md",
"**/*.yml",
"**/*.yaml",
"**/*.html"
],
"ignore": [
"**/packages/**",
"**/libs/**",
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/coverage/**",
"**/.next/**",
"**/files/**",
"**/typia-generated/**",
"**/.docusaurus/**",
"**/out/**",
"patches/**",
"assets/**",
".changeset/**",
".nx/**",
"post-process.js"
]
},
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"noStaticOnlyClass": "off",
"noForEach": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noImplicitAnyLet": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"a11y": {
"useKeyWithClickEvents": "off"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"javascript": {
"formatter": {
"indentStyle": "space",
"quoteStyle": "single",
"trailingComma": "es5",
"indentWidth": 2,
"lineEnding": "lf",
"semicolons": "always"
}
},
"json": {
"formatter": {
"enabled": true,
"indentWidth": 2,
"indentStyle": "space",
"lineEnding": "lf"
}
"ignore": ["**/packages/**", "**/libs/**"]
}
}

0 comments on commit cfbcadb

Please sign in to comment.