Skip to content

Commit

Permalink
Merge pull request #6 from yongenaelf/feature/aelf-redesign-part1
Browse files Browse the repository at this point in the history
feature/aelf-redesign-part1: Companion wallet design part 1 updates
  • Loading branch information
Faizal-aelf authored Nov 21, 2023
2 parents 38d41b5 + 3760f3c commit 7ba0913
Show file tree
Hide file tree
Showing 81 changed files with 7,788 additions and 3,660 deletions.
15 changes: 15 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
extends: 'next',
rules: {
// Add or modify spacing rules here
'indent': ['error', 2], // Use 2 spaces for indentation
// Rule to check for unused imports
'no-unused-vars': ['error', { vars: 'all', args: 'after-used', ignoreRestSiblings: true }],
'import/order': [
'error',
{
'groups': [['builtin', 'external'], 'internal'],
},
],
},
};
3 changes: 3 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
coverage/prettify.css
coverage/base.css
20 changes: 20 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": [
"stylelint-config-standard"
],
"plugins": [
],
"rules": {
"indentation": 2,
"selector-list-comma-newline-after": "always",
"color-hex-case": "lower",
"value-list-comma-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"string-quotes": "double",
"max-line-length": null,
"selector-descendant-combinator-no-non-space": true,
"no-missing-end-of-source-newline": null,
"selector-class-pattern": "^([a-z][a-zA-Z0-9]*|[a-z]+(-[a-z]+)*)$"
}
}

20 changes: 20 additions & 0 deletions assets/icon/aelf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions assets/icon/connect-bg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/icon/copy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/icon/globe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions assets/icon/logo-mainnet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7ba0913

Please sign in to comment.