-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from yongenaelf/feature/aelf-redesign-part1
feature/aelf-redesign-part1: Companion wallet design part 1 updates
- Loading branch information
Showing
81 changed files
with
7,788 additions
and
3,660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'], | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
coverage/prettify.css | ||
coverage/base.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]+)*)$" | ||
} | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.