Skip to content

Commit f6498b6

Browse files
Update README.md
1 parent 2273c4b commit f6498b6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,25 @@ Add the plugin to the plugins section, and configure the rule options.
3333
}
3434
```
3535

36+
## Using the new flat config
37+
38+
Here is an example of how to use with the new flat config.
39+
40+
```ts
41+
import noRelativeImportPaths from 'eslint-plugin-no-relative-import-paths';
42+
43+
export default [
44+
{
45+
plugins: {
46+
'no-relative-import-paths': noRelativeImportPaths,
47+
},
48+
rules: {
49+
'no-relative-import-paths/no-relative-import-paths': 'error',
50+
},
51+
},
52+
]
53+
```
54+
3655
## Rule options
3756

3857
```json

0 commit comments

Comments
 (0)