We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a601cfc commit 0a63f77Copy full SHA for 0a63f77
packages/eslint-plugin-rules/README.md
@@ -41,8 +41,17 @@ export default defineConfig(
41
alternative you can configure the plugin like this:
42
43
```js
44
+import eslintScPlugin from '@shiftcode/eslint-plugin-rules'
45
+
46
export default defineConfig({
-
47
+ files: ['**/*.ts'],
48
+ plugins: {
49
+ '@shiftcode': eslintScPlugin
50
+ },
51
+ rules: {
52
+ '@shiftcode/prefix-builtin-module-import': 'error',
53
+ // ...
54
+ }
55
})
56
```
57
0 commit comments