Skip to content

Commit 576c90c

Browse files
authoredSep 22, 2022
chore(project): use svglint (#1709)
1 parent f66a886 commit 576c90c

5 files changed

+307
-5
lines changed
 

‎.lintstagedrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
"*.svg": "svgo",
2+
"*.svg": ["svglint", "svgo"],
33
"*.{ts,tsx}": ["eslint --cache --fix", "prettier --write"],
44
"*.{md,ts,tsx,js,css,less,json,yml,yaml,html,sh}": "cspell --no-progress --no-must-find-files",
55
};

‎.svglintrc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
rules: {
3+
custom: [
4+
// Avoid non-svg data images
5+
(reporter, $, ast) => {
6+
reporter.name = 'non-svg';
7+
8+
const dataImagePattern = /data:image\/(?<extension>[a-zA-Z]+);base64,/;
9+
const dataImageMatched = dataImagePattern.exec(ast.source);
10+
11+
if (dataImageMatched) {
12+
const extension = dataImageMatched.groups['extension'].toLowerCase();
13+
if (extension !== 'svg') {
14+
reporter.error(`Found data image \`${extension}\``);
15+
}
16+
}
17+
},
18+
],
19+
},
20+
};

‎cspell.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ module.exports = {
103103
"commitlintrc", // @commitlint/cli
104104
"unpublish", // agora-rtc-sdk-ng
105105
"multipass", // svgo
106+
"svglint",
106107
"allowlist", // webpack-node-externals
107108
"Wyri", // WyriHaximus/github-action-helm3@v2
108109
"Haximus", // WyriHaximus/github-action-helm3@v2

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"less": "^4.1.3",
5555
"lint-staged": "^13.0.3",
5656
"prettier": "^2.7.1",
57+
"svglint": "^2.1.1",
5758
"svgo": "^2.8.0",
5859
"typescript": "^4.8.3",
5960
"vite": "^3.1.3",

0 commit comments

Comments
 (0)