@meistrari/mise-en-place 2.0.3 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,9 +44,7 @@ Run `make .editorconfig` to copy this project's `.editorconfig` to your project.
44
44
  Add the following code in your `eslint.config.mjs` to include this project's ESLint configuration:
45
45
 
46
46
  ```ts
47
- {
48
- export { default } from '@meistrari/mise-en-place/eslint'
49
- }
47
+ export { default } from '@meistrari/mise-en-place/eslint'
50
48
  ```
51
49
 
52
50
  ## TSConfig
package/dist/eslint.mjs CHANGED
@@ -73,13 +73,31 @@ const eslintConfig = antfu(
73
73
  "drizzle/enforce-update-with-where": [
74
74
  "error",
75
75
  {
76
- drizzleObjectName: ["db"]
76
+ drizzleObjectName: [
77
+ "db",
78
+ "_db",
79
+ "database",
80
+ "_database",
81
+ "trx",
82
+ "_trx",
83
+ "transaction",
84
+ "_transaction"
85
+ ]
77
86
  }
78
87
  ],
79
88
  "drizzle/enforce-delete-with-where": [
80
89
  "error",
81
90
  {
82
- drizzleObjectName: ["db"]
91
+ drizzleObjectName: [
92
+ "db",
93
+ "_db",
94
+ "database",
95
+ "_database",
96
+ "trx",
97
+ "_trx",
98
+ "transaction",
99
+ "_transaction"
100
+ ]
83
101
  }
84
102
  ]
85
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/mise-en-place",
3
- "version": "2.0.3",
3
+ "version": "2.1.1",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",