forked from simple-icons/simple-icons
-
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.
Minor improvements (simple-icons#4708)
* Remove .travis.yml reference from .gitattributes * Minor refactoring of .svglintrc.js - Remove unused variables - Fix missing semi-colons - Remove unneeded indentation * Prevent error in clean command due to missing files * Fix indentations * Further improvements to Editorconfig and indentation * Format YAML files - Update indentation for array notation - Normalize use of newlines
- Loading branch information
1 parent
8fc59f0
commit a4ca746
Showing
18 changed files
with
184 additions
and
187 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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
new icon: | ||
- any: [icons/*.svg] | ||
status: 'added' | ||
- any: [icons/*.svg] | ||
status: added | ||
icon outdated: | ||
- any: [icons/*.svg] | ||
status: 'modified' | ||
- any: [icons/*.svg] | ||
status: modified |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"title": "Simple Icons", | ||
"type": "object", | ||
"properties": { | ||
"icons": { | ||
"description": "The list of icons", | ||
"type": "array", | ||
"items": { | ||
"description": "A single icon", | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"description": "The icons name", | ||
"type": "string", | ||
"required": true | ||
}, | ||
"hex": { | ||
"description": "The icons color, as HEX (without #)", | ||
"type": "string", | ||
"pattern": "^[0-9A-F]{6}$", | ||
"required": true | ||
}, | ||
"source": { | ||
"description": "The website from which the icon originated", | ||
"type": "string", | ||
"pattern": "^https?://[^\\s]+$", | ||
"required": true | ||
} | ||
}, | ||
"required": true | ||
} | ||
} | ||
"title": "Simple Icons", | ||
"type": "object", | ||
"properties": { | ||
"icons": { | ||
"description": "The list of icons", | ||
"type": "array", | ||
"items": { | ||
"description": "A single icon", | ||
"type": "object", | ||
"properties": { | ||
"title": { | ||
"description": "The icons name", | ||
"type": "string", | ||
"required": true | ||
}, | ||
"hex": { | ||
"description": "The icons color, as HEX (without #)", | ||
"type": "string", | ||
"pattern": "^[0-9A-F]{6}$", | ||
"required": true | ||
}, | ||
"source": { | ||
"description": "The website from which the icon originated", | ||
"type": "string", | ||
"pattern": "^https?://[^\\s]+$", | ||
"required": true | ||
} | ||
}, | ||
"required": true | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.