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 99fcddd commit 790c046Copy full SHA for 790c046
README.md
@@ -7,8 +7,16 @@ This small tool checks for two cases of duplication so far:
7
8
## Usage
9
10
-Run `ilcd folder` or skip the folder and link the cwd recursively. The following patterns are ignored:
+Run `ilcd folder` or skip the folder and link the cwd recursively. The `node_modules` are ignored as file origin.
11
12
-- node_modules
13
-- dist
14
-- coverage
+Add a `.idrinth-duplicate-style-check.json` configuration file in the cwd to define entry points to get better results, example:
+
+```json
15
+{
16
+ "entrypoints": [
17
+ "index.css",
18
+ "src/hidden.css"
19
+ ]
20
+}
21
+```
22
+And yes, this can be run with npx as well: `npx @idrinth/duplicate-style-check`
0 commit comments