Skip to content

Commit d575608

Browse files
committed
chore: git and lit should ignore files generated during packaged
WE2-1179 Signed-off-by: Sven Mitt <svenzik@users.noreply.github.com>
1 parent 6856dbe commit d575608

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
node_modules
22
.vscode
3-
/web-eid.js
4-
/config.js
3+
/web-eid.*
4+
/config.*
55
/errors
66
/models
77
/services

eslint.config.mjs

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,19 @@ const overrides = {
9191
};
9292

9393
export default [
94-
{ ignores: ["dist/", "node_modules/", "examples/"] },
94+
{
95+
ignores: [
96+
"dist/",
97+
"node_modules/",
98+
"examples/",
99+
"web-eid.*",
100+
"config.*",
101+
"errors/",
102+
"models/",
103+
"services/",
104+
"utils/",
105+
],
106+
},
95107

96108
{
97109
name: "eslint/recommended",

0 commit comments

Comments
 (0)