Skip to content

Commit

Permalink
Add type: module to package.json (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
Duddino authored Sep 28, 2023
1 parent b012664 commit 3f8a812
Show file tree
Hide file tree
Showing 23 changed files with 8,536 additions and 8,586 deletions.
28 changes: 0 additions & 28 deletions .eslintrc.js

This file was deleted.

17 changes: 17 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": { "browser": true, "es2021": true, "jquery": true },
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": { "ecmaVersion": "latest", "sourceType": "module" },
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_" }
],
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-constant-condition": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ index.template.html
*.yaml
LICENSE
*.md
*.json
package-lock.json
dist/
6 changes: 3 additions & 3 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true
}
42 changes: 21 additions & 21 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "My PIVX Wallet",
"short_name": "MPW",
"start_url": ".",
"description": "Send, Stake and Receive with PIVX's most universal wallet. ",
"orientation": "portrait",
"display": "standalone",
"icons": [
{
"src": "512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"background_color": "#17012c",
"theme_color": "#470e75"
}
"name": "My PIVX Wallet",
"short_name": "MPW",
"start_url": ".",
"description": "Send, Stake and Receive with PIVX's most universal wallet. ",
"orientation": "portrait",
"display": "standalone",
"icons": [
{
"src": "512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"background_color": "#17012c",
"theme_color": "#470e75"
}
Loading

0 comments on commit 3f8a812

Please sign in to comment.