File tree 5 files changed +17
-4
lines changed
5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.0 .0"
2
+ "." : " 0.1 .0"
3
3
}
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## 0.1.0 (2024-11-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * Add no-duplicate-imports rule ([ #4 ] ( https://github.com/eslint/css/issues/4 ) ) ([ 8d4558b] ( https://github.com/eslint/css/commit/8d4558bbbd6134d5bba4c0b4130f7be31de1b34a ) )
9
+ * CSS language plugin ([ #2 ] ( https://github.com/eslint/css/issues/2 ) ) ([ 52d4f2c] ( https://github.com/eslint/css/commit/52d4f2c35c8a164a8f95b03ec7709abe6a8e59e8 ) )
10
+ * no-invalid-properties rule ([ #11 ] ( https://github.com/eslint/css/issues/11 ) ) ([ 9b80bdd] ( https://github.com/eslint/css/commit/9b80bdd5e222b158fd94dbef9ca6add92dd2a5ce ) )
11
+ * no-unknown-at-rules -> ; no-invalid-at-rules ([ #12 ] ( https://github.com/eslint/css/issues/12 ) ) ([ b90ee0e] ( https://github.com/eslint/css/commit/b90ee0eb86691747040f48f92afb19f6a18d2231 ) )
12
+ * no-unknown-at-rules rule ([ #7 ] ( https://github.com/eslint/css/issues/7 ) ) ([ 9a4d027] ( https://github.com/eslint/css/commit/9a4d02721a8f7f5d1f119337a45fb4336ee69156 ) )
13
+ * no-unknown-properties rule ([ #5 ] ( https://github.com/eslint/css/issues/5 ) ) ([ 43dec96] ( https://github.com/eslint/css/commit/43dec96553557be58039a658e0bb100cd6ae2ab8 ) )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/css" ,
3
- "version" : " 0.0 .0" ,
3
+ "version" : " 0.1 .0" ,
4
4
"exports" : " ./dist/esm/index.js" ,
5
5
"publish" : {
6
6
"include" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/css" ,
3
- "version" : " 0.0 .0" ,
3
+ "version" : " 0.1 .0" ,
4
4
"description" : " CSS linting plugin for ESLint" ,
5
5
"author" : " Nicholas C. Zakas" ,
6
6
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import noInvalidAtRules from "./rules/no-invalid-at-rules.js";
21
21
const plugin = {
22
22
meta : {
23
23
name : "@eslint/css" ,
24
- version : "0.0 .0" , // x-release-please-version
24
+ version : "0.1 .0" , // x-release-please-version
25
25
} ,
26
26
languages : {
27
27
css : new CSSLanguage ( ) ,
You can’t perform that action at this time.
0 commit comments