Skip to content

Commit a33f852

Browse files
committed
fix return code
1 parent ce54b30 commit a33f852

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/lint-css-duplicates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22
import lint from '../src/index.js';
33

4-
process.exit(lint(process.argv[2] || process.cwd()) ? 1 : 0);
4+
process.exit(lint(process.argv[2] || process.cwd()) ? 0 : 1);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@idrinth/duplicate-style-check",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "A linting tool trying to find duplicated style rules",
55
"type": "module",
66
"license": "MIT",

0 commit comments

Comments
 (0)