Skip to content

Commit

Permalink
fix: temporary fix for linter; unless I will figure out how to do ign…
Browse files Browse the repository at this point in the history
…ore properly
  • Loading branch information
Igx22 committed Nov 12, 2024
1 parent 874dff9 commit 53382ce
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
public
build
dist
# these files come from push-vnode; don't reformat them please;
src/utilz/*.ts
src/modules/validator/*.ts
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"browser": true,
"es2021": true
},
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "unused-imports", "simple-import-sort"],
"rules": {
"unused-imports/no-unused-imports": "error",
"prefer-const": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"no-var": "error"
}
}
File renamed without changes.
File renamed without changes.

0 comments on commit 53382ce

Please sign in to comment.