node-liblzma
Version:
NodeJS wrapper for liblzma
82 lines (81 loc) • 1.75 kB
JSON
{
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": [
"**/src/**/*",
"**/test/**/*",
"**/*.ts",
"**/*.js",
"**/*.mts",
"**/*.cts",
"**/*.json",
"!**/lib/**/*",
"!**/build/**/*",
"!**/node_modules/**/*",
"!**/*.d.ts",
"!**/*.coffee"
]
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 100,
"attributePosition": "auto"
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "warn",
"noUnusedImports": "warn"
},
"style": {
"useConsistentArrayType": "error",
"useForOf": "warn",
"useTemplate": "warn"
},
"suspicious": {
"noExplicitAny": "warn",
"noArrayIndexKey": "warn"
},
"complexity": {
"noExcessiveCognitiveComplexity": "warn",
"noVoid": "off"
},
"performance": {
"noDelete": "warn"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"attributePosition": "auto"
}
},
"json": {
"formatter": {
"enabled": true
},
"linter": {
"enabled": true
}
}
}