Skip to content

Commit

Permalink
Dependency corrections for monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
bgelatti committed Oct 10, 2024
1 parent 55aabd5 commit a88b878
Show file tree
Hide file tree
Showing 464 changed files with 3,291 additions and 2,237 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
"testid",
"tinycolor",
"unattach"
],
]
}
59 changes: 59 additions & 0 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["build", "build-tsc", "plugins"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useNodejsImportProtocol": "error",
"noParameterAssign": "off"
},
"nursery": {
"noCommonJs": "error"
},
"correctness": {
"useImportExtensions": "error",
"useExhaustiveDependencies": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off",
"noAssignInExpressions": "off"
},
"complexity": {
"noForEach": "off"
},
"a11y": {
"useKeyWithClickEvents": "off",
"noSvgWithoutTitle": "off",
"useIframeTitle": "off",
"noLabelWithoutControl": "off",
"useAltText": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "all"
}
}
}
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
preset: "ts-jest",
testEnvironment: "node",
roots: ['<rootDir>/packages', '<rootDir>/plugins'],
Expand Down
Loading

0 comments on commit a88b878

Please sign in to comment.