-
Notifications
You must be signed in to change notification settings - Fork 541
/
Copy pathknip.ts
70 lines (65 loc) · 2.13 KB
/
knip.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { KnipConfig } from "knip";
const CSS_IMPORT_REGEX = /@import\s*(?:url\()?(?:\([^)]*\)\s*)?["']([^"']+)["'](?:\))?/g;
function compileLess(text: string): string {
return text.replace(CSS_IMPORT_REGEX, (_, path) => {
// imports without a file extension should be treated as .less files
// source: https://lesscss.org/features/#import-atrules-feature-file-extensions
if (path.split('.').length === 1) {
return `import "./${path}.less";`
}
return `import "${path}";`
});
}
function compileCss(text: string) {
return text.replace(CSS_IMPORT_REGEX, (_, path) => {
return `import "${path}";`
})
}
export default {
entry: ["static/js/*.js", "static/css/*.{less,css}"],
project: ["static/**/*.{js,less,css}!"],
vite: true,
vitest: true,
eslint: true,
ignoreDependencies: [
"addons-linter",
// Disable rules causing errors
"jqmodal",
"jquery-pjax",
"highcharts",
"source-map",
],
ignore: [
// Disable rules causing errors
"static/css/admin/larger_raw_id.css",
"static/css/devhub/search.less",
"static/css/impala/footer.less",
"static/css/impala/nojs.css",
"static/css/moz_header/footer.css",
"static/css/shield_study_10/main.css",
"static/css/shield_study_11/main.css",
"static/css/shield_study_12/main.css",
"static/css/shield_study_13/main.css",
"static/css/shield_study_15/main.css",
"static/css/shield_study_14/main.css",
"static/css/shield_study_16/main.css",
"static/css/shield_study_3/main.css",
"static/css/shield_study_4/main.css",
"static/css/shield_study_5/main.css",
"static/css/shield_study_6/main.css",
"static/css/shield_study_7/main.css",
"static/css/shield_study_8/main.css",
"static/css/shield_study_9/main.css",
"static/css/zamboni/blocklist.css",
"static/css/zamboni/nick.css",
"static/css/zamboni/themes_review.less",
"static/css/zamboni/translations/trans.css",
"static/js/lib/highcharts-module.js",
"static/js/lib/highcharts.src.js",
],
compilers: {
// Custom compilers for less/css files
less: compileLess,
css: compileCss,
},
} satisfies KnipConfig;