Skip to content

Commit bcfa966

Browse files
Update npm dependencies including eslint and styelint
1 parent c3336ac commit bcfa966

File tree

5 files changed

+2871
-1959
lines changed

5 files changed

+2871
-1959
lines changed

eslint.config.cjs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
const js = require('@eslint/js');
2+
3+
module.exports = {
4+
...js.configs.all,
5+
languageOptions: {
6+
ecmaVersion: "latest",
7+
sourceType: "commonjs",
8+
},
9+
rules: {
10+
indent: [
11+
"error",
12+
4,
13+
],
14+
"no-var": "error",
15+
semi: [
16+
"error",
17+
"always",
18+
],
19+
},
20+
};

0 commit comments

Comments
 (0)