Skip to content
This repository was archived by the owner on Mar 15, 2020. It is now read-only.

Commit a68f442

Browse files
Merge pull request #47 from AndrewLeedham/dev
Dev
2 parents d0464bc + 01ac5ca commit a68f442

File tree

3 files changed

+165
-130
lines changed

3 files changed

+165
-130
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ Adds the following Modular-CSS specific rule and attribute syntax highlighting o
2424

2525
## Known Issues
2626
Currently this extension only supports syntax highlighting. So errors may be thrown if you are using somesort of linter.
27+
A suggested work-around is to add the following settings to your workspace:
28+
```json
29+
{
30+
"css.lint.validProperties": [
31+
"composes"
32+
],
33+
"css.lint.unknownAtRules": "ignore",
34+
"scss.lint.validProperties": [
35+
"composes"
36+
],
37+
"scss.lint.unknownAtRules": "ignore"
38+
}
39+
```
2740

2841
---
2942
[CHANGELOG](/CHANGELOG.md) | [LICENSE](/LICENSE)

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575
"subject": "/\\[security\\].*/",
7676
"release": "patch"
7777
}
78+
],
79+
"noteKeywords": [
80+
"BREAKING CHANGE",
81+
"[security]"
7882
]
7983
}
8084
],
@@ -86,15 +90,15 @@
8690
]
8791
},
8892
"devDependencies": {
89-
"@commitlint/cli": "^8.0.0",
90-
"@commitlint/config-conventional": "^8.0.0",
93+
"@commitlint/cli": "^8.1.0",
94+
"@commitlint/config-conventional": "^8.1.0",
9195
"@semantic-release/changelog": "^3.0.4",
92-
"@semantic-release/commit-analyzer": "^6.2.0",
96+
"@semantic-release/commit-analyzer": "^6.3.0",
9397
"@semantic-release/git": "^7.0.16",
9498
"@semantic-release/github": "^5.4.2",
95-
"@semantic-release/release-notes-generator": "^7.2.1",
96-
"husky": "^3.0.0",
97-
"semantic-release": "^15.13.18",
99+
"@semantic-release/release-notes-generator": "^7.3.0",
100+
"husky": "^3.0.4",
101+
"semantic-release": "^15.13.21",
98102
"semantic-release-vsce": "^2.2.8"
99103
},
100104
"dependencies": {}

0 commit comments

Comments
 (0)