Skip to content

Commit

Permalink
Merge pull request #9 from dusk-network/feature-8
Browse files Browse the repository at this point in the history
Change color name rule
  • Loading branch information
kieranhall authored Jul 24, 2024
2 parents bf0d423 + dfc410c commit 97fee71
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions __tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ describe("stylelint-config", () => {
width: 10px;
top: .2em;
max-width: initial;
color: white;
}
`).then((data) => {
expect(data).toHaveErrored();
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
"at-rule-no-unknown": null,
"block-no-empty": true,
"color-function-notation": null,
"color-named": "never",
"color-named": "always-where-possible",
"color-no-invalid-hex": true,
"comment-no-empty": null,
"custom-property-pattern": null,
Expand Down
4 changes: 2 additions & 2 deletions lib/config/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default as browsers } from "./browsers";
export { default as propertyOrder } from "./property-order";
export { default as browsers } from "./browsers.js";
export { default as propertyOrder } from "./property-order.js";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"test": "npm run test:jest",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage false"
},
"version": "1.0.5",
"version": "1.0.6",
"devDependencies": {
"@dusk-network/eslint-config": "3.3.1",
"@dusk-network/prettier-config": "1.1.0",
Expand Down

0 comments on commit 97fee71

Please sign in to comment.