File tree Expand file tree Collapse file tree 32 files changed +14614
-3700
lines changed
Filter options
Expand file tree Collapse file tree 32 files changed +14614
-3700
lines changed
Original file line number Diff line number Diff line change 3
3
images /
4
4
out /
5
5
plugins /
6
- scripts /
6
+ snippets /
7
+ tasks /
8
+ test /
9
+ .eslintrc.json
10
+ gulpfile.js
Original file line number Diff line number Diff line change 1
1
{
2
2
"env" : {
3
- "browser" : true ,
4
3
"es6" : true ,
5
4
"node" : true
6
5
},
115
114
" error" ,
116
115
{
117
116
"selector" : " default" ,
118
- "format" : [
119
- " camelCase" ,
120
- " PascalCase" ,
121
- " UPPER_CASE"
122
- ],
117
+ "format" : null ,
123
118
"leadingUnderscore" : " allow" ,
124
- "trailingUnderscore" : " forbid"
119
+ "trailingUnderscore" : " forbid" ,
120
+ "custom" : {
121
+ "regex" : " ^(?:[A-Za-z](?:[A-Za-z0-9]+)*|[A-Z](?:[A-Z0-9]*?)(?:_[A-Z0-9]+)*|[A-Za-z][A-Za-z0-9]+(?:\\ .[A-Za-z0-9]+)+|\\ d+|(?:-[a-z0-9]+)+)$" ,
122
+ "match" : true
123
+ }
125
124
}
126
125
],
127
126
"@typescript-eslint/no-dupe-class-members" : " error" ,
156
155
],
157
156
"no-throw-literal" : " off" ,
158
157
"@typescript-eslint/no-throw-literal" : " error" ,
158
+ "@typescript-eslint/no-unsafe-argument" : " off" ,
159
159
"@typescript-eslint/no-unsafe-assignment" : " off" ,
160
160
"@typescript-eslint/no-unsafe-member-access" : " off" ,
161
161
"@typescript-eslint/no-unsafe-return" : " off" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
out
2
2
node_modules
3
- * .vsix
3
+ * .vsix
4
+ test /
5
+ ! src /test /
Original file line number Diff line number Diff line change 1
1
{
2
- // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
- // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4
-
5
- // List of extensions which should be recommended for users of this workspace.
2
+ // See http://go.microsoft.com/fwlink/?LinkId=827846
3
+ // for the documentation about the extensions.json format
6
4
"recommendations" : [
7
5
" dbaeumer.vscode-eslint"
8
6
]
Original file line number Diff line number Diff line change 16
16
"outFiles" : [
17
17
" ${workspaceFolder}/out/**/*.js"
18
18
],
19
- "preLaunchTask" : " npm: watch"
19
+ // "preLaunchTask": "npm: watch"
20
+ },
21
+ {
22
+ "name" : " Extension Tests" ,
23
+ "type" : " extensionHost" ,
24
+ "request" : " launch" ,
25
+ "runtimeExecutable" : " ${execPath}" ,
26
+ "args" : [
27
+ " --extensionDevelopmentPath=${workspaceFolder}" ,
28
+ " --extensionTestsPath=${workspaceFolder}/out/test"
29
+ ],
30
+ "outFiles" : [
31
+ " ${workspaceFolder}/out/test/**/*.js"
32
+ ],
33
+ // "preLaunchTask": "npm: watch"
20
34
}
21
35
]
22
36
}
Original file line number Diff line number Diff line change 4
4
"version" : " 2.0.0" ,
5
5
"tasks" : [
6
6
{
7
- "type" : " npm" ,
8
- "script" : " watch" ,
9
- "problemMatcher" : " $tsc-watch" ,
10
- "isBackground" : true ,
11
- "presentation" : {
12
- "reveal" : " never"
13
- },
14
- "group" : {
15
- "kind" : " build" ,
16
- "isDefault" : true
17
- }
7
+ "type" : " gulp" ,
8
+ "task" : " build & watch" ,
9
+ "problemMatcher" : []
10
+ },
11
+ {
12
+ "type" : " gulp" ,
13
+ "task" : " build" ,
14
+ "problemMatcher" : []
15
+ },
16
+ {
17
+ "type" : " gulp" ,
18
+ "task" : " watch" ,
19
+ "problemMatcher" : []
20
+ },
21
+ {
22
+ "type" : " gulp" ,
23
+ "task" : " clean" ,
24
+ "problemMatcher" : []
18
25
},
19
26
{
20
27
"type" : " npm" ,
21
- "script" : " docs" ,
22
- "problemMatcher" : [],
23
- "label" : " npm: docs" ,
24
- "detail" : " node ./scripts/docs.js"
28
+ "script" : " compile" ,
29
+ "problemMatcher" : []
25
30
}
26
31
]
27
32
}
Original file line number Diff line number Diff line change 1
1
.vscode /**
2
2
.vscode-test /**
3
- .gitattributes
4
- .gitignore
5
- .eslintignore
6
- .eslintrc.json
7
- tsconfig.json
8
3
plugins /**
9
- scripts /**
10
4
src /**
5
+ tasks /**
6
+ test /**
11
7
tests /**
8
+ .eslintignore
9
+ .eslintrc.json
10
+ .gitignore
11
+ gulpfile.js
12
+ tsconfig.json
12
13
** /* .map
13
- ** /* .ts
14
+ ** /* .ts
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
All notable changes to the "CSS and SCSS Snippets" extension will be documented in this file.
3
3
4
+ ## [ 0.18.0] - 2024-03-31
5
+
6
+ ### Added
7
+ - Added ` _ ` for child brace scope ` & { ... } ` .
8
+ - Added ` __ ` for simple brace scope ` #{} ` in SCSS.
9
+ - Added ` #{clipboard} ` and ` #{selection} ` for keyboard shortcut usage.
10
+ - Added ` grid ` properties.
11
+ - Added ` writing-mode ` property.
12
+ - Added ` isolation ` property.
13
+ - Added ` block ` and ` inline ` properties for ` border ` , ` margin ` and ` padding ` .
14
+ - Added SCSS module functions.
15
+ - Added ` $1 ` , ` $d1 ` and ` $g1 ` for SCSS variable declaration.
16
+ - Added ` true ` , ` false ` and ` null ` for SCSS.
17
+
18
+ ### Changed
19
+ - Changed prefix for color from ` _ ` to ` # ` .
20
+ - Simplified SCSS include.
21
+ - Strings are always single quote.
22
+ - Some fixes and clean up like simplified font.
23
+ - Eliminated a lot of duplicated prefixes with value selection.
24
+
25
+ ### Removed
26
+ - Removed properties with prefixes.
27
+
4
28
## [ 0.17.0] - 2023-04-09
5
29
6
30
### Changed
You can’t perform that action at this time.
0 commit comments