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 450bb63 commit 9f4be50Copy full SHA for 9f4be50
README.md
@@ -6,3 +6,21 @@
6
[](https://acel.me/donate)
7
8
Coding standard used by Shlink JavaScript projects.
9
+
10
+This library includes two ESLint configurations, the base one, and the react-specific one. Default export includes both:
11
12
+```js
13
+// eslint.config.js
14
+import shlink from '@shlinkio/eslint-config-js-coding-standard';
15
16
+export default shlink;
17
+```
18
19
+If the project does not use React, you can just use the base config:
20
21
22
23
+import { baseConfig } from '@shlinkio/eslint-config-js-coding-standard';
24
25
+export default baseConfig;
26
0 commit comments