@brickflow/lint 0.0.10 → 0.0.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/shared.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickflow/lint",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "description": "Shared ESLint configs for brickflow workspaces.",
6
6
  "files": [
package/shared.js CHANGED
@@ -133,6 +133,10 @@ const baseRules = {
133
133
  message: 'defineEmits is forbidden. Use props or alternative pattern.',
134
134
  selector: "CallExpression[callee.name='defineEmits']",
135
135
  },
136
+ {
137
+ message: 'defineSlots is forbidden. Use props or alternative pattern.',
138
+ selector: "CallExpression[callee.name='defineSlots']",
139
+ },
136
140
  ],
137
141
  'no-return-assign': 'error',
138
142
  'no-script-url': 'error',