mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
58 lines
1.0 KiB
JSON
58 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.11/schema.json",
|
|
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
|
|
"files": {
|
|
"ignoreUnknown": true,
|
|
"includes": ["**", "!!build", "!!dist", "!!out"]
|
|
},
|
|
|
|
"formatter": {
|
|
"enabled": false,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineEnding": "lf"
|
|
},
|
|
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"jsxQuoteStyle": "double",
|
|
"trailingCommas": "none",
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noConsole": "off",
|
|
"noImplicitAnyLet": "off",
|
|
"useIterableCallbackReturn": "off"
|
|
},
|
|
"correctness": {
|
|
"noSwitchDeclarations": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off"
|
|
}
|
|
}
|
|
},
|
|
|
|
"assist": {
|
|
"enabled": false,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|