Skip to content

Commit

Permalink
Merge pull request #7 from paritytech/config-from-url
Browse files Browse the repository at this point in the history
Clean up, setup eslint, Bug fixes in navigation, call index display
  • Loading branch information
tadeohepperle authored Oct 27, 2023
2 parents 26cb525 + b72581a commit fb83d7a
Show file tree
Hide file tree
Showing 33 changed files with 1,748 additions and 747 deletions.
28 changes: 28 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "unused-imports"],
"ignorePatterns": ["dist/", "tailwind.config.js"],
"rules": {
"@typescript-eslint/no-explicit-any": ["off"],
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
]
}
}
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<!DOCTYPE html>
<html lang="en" class="sidebar-visible no-js light">
<html
lang="en"
class="sidebar-visible js navy"
style="background-color: #161923"
>
<head>
<meta charset="UTF-8" />
<title>Subxt Explorer</title>
Expand Down
Loading

0 comments on commit fb83d7a

Please sign in to comment.