File tree 6 files changed +287
-333
lines changed
6 files changed +287
-333
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,4 @@ demo.gif
17
17
.cssrem
18
18
.yarnrc.yml
19
19
scripts /**
20
+ .nvmrc
Original file line number Diff line number Diff line change 260
260
]
261
261
},
262
262
"devDependencies" : {
263
- "@types/mocha" : " ^10.0.9" ,
264
263
"@types/node" : " 20.x" ,
265
264
"@types/vscode" : " ^1.90.0" ,
266
- "@typescript-eslint/eslint-plugin" : " ^8.10.0" ,
267
- "@typescript-eslint/parser" : " ^8.7.0" ,
268
- "@vscode/l10n-dev" : " ^0.0.18" ,
265
+ "@typescript-eslint/eslint-plugin" : " ^8.20.0" ,
266
+ "@typescript-eslint/parser" : " ^8.20.0" ,
269
267
"@vscode/test-cli" : " ^0.0.10" ,
270
268
"@vscode/test-electron" : " ^2.4.1" ,
271
269
"conventional-changelog-cli" : " ^5.0.0" ,
272
- "esbuild" : " ^0.24.0 " ,
273
- "eslint" : " ^9.13 .0" ,
270
+ "esbuild" : " ^0.24.2 " ,
271
+ "eslint" : " ^9.18 .0" ,
274
272
"tsx" : " ^4.19.2" ,
275
273
"typescript" : " ^5.6.3"
276
274
},
277
275
"dependencies" : {
278
- "@vscode/l10n" : " ^0.0.10 " ,
276
+ "@vscode/l10n" : " ^0.0.18 " ,
279
277
"jsonc-parser" : " ^3.0.0" ,
280
278
"minimatch" : " ^10.0.1"
281
279
},
Original file line number Diff line number Diff line change @@ -79,3 +79,10 @@ export async function loadConfig(): Promise<void> {
79
79
export function isIngore ( uri : Uri ) {
80
80
return cog . ignores . some ( ( p ) => minimatch ( uri . path , p ) ) ;
81
81
}
82
+
83
+ export function testConfig ( c : Partial < Config > ) {
84
+ cog = { ...c } as unknown as Config ;
85
+ fixIngores ( ) ;
86
+ fixLanguages ( ) ;
87
+ resetRules ( ) ;
88
+ }
Original file line number Diff line number Diff line change
1
+ import * as assert from 'assert' ;
2
+ import { RULES } from '../rules' ;
3
+ import { testConfig } from '../config' ;
4
+
5
+ suite ( 'rules' , ( ) => {
6
+ suite ( 'pxToRem' , ( ) => {
7
+ testConfig ( {
8
+ rootFontSize : 16 ,
9
+ fixedDigits : 2 ,
10
+ autoRemovePrefixZero : true ,
11
+ } ) ;
12
+ const rule = RULES . find ( ( w ) => w . type === 'pxToRem' ) ;
13
+
14
+ test ( 'should be working' , ( ) => {
15
+ const res = rule ?. fn ( `12px` ) ;
16
+ assert . equal ( res ?. value , `.75rem` ) ;
17
+ } ) ;
18
+
19
+ test ( `should be return null when character can't be parsed as a number` , ( ) => {
20
+ const res = rule ?. fn ( `&.px` ) ;
21
+ assert . equal ( res , null ) ;
22
+ } ) ;
23
+ } ) ;
24
+ } ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"module" : " commonjs" ,
4
- "target" : " ES2020 " ,
4
+ "target" : " es2020 " ,
5
5
"lib" : [
6
- " ES2020 "
6
+ " es2020 "
7
7
],
8
+ "outDir" : " out" ,
8
9
"sourceMap" : true ,
9
10
"rootDir" : " src" ,
10
- "outDir" : " out" ,
11
- "strict" : true ,
12
- "noEmit" : true
11
+ "strict" : true
13
12
},
14
- "include" : [
15
- " src/**/*.ts"
13
+ "exclude" : [
14
+ " node_modules" ,
15
+ " .vscode-test" ,
16
+ " examples" ,
17
+ " scripts"
16
18
]
17
19
}
You can’t perform that action at this time.
0 commit comments