Skip to content

Commit 3fe20e9

Browse files
author
aMarCruz
committed
v0.1.0
0 parents  commit 3fe20e9

46 files changed

Lines changed: 12984 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"root": true,
3+
"extends": ["@quitsmx"],
4+
"ignorePatterns": ["dist"],
5+
"overrides": [
6+
{
7+
"files": ["**/*.js"],
8+
"extends": "@quitsmx/eslint-config/node"
9+
}
10+
]
11+
}

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# See https://help.github.com/articles/ignoring-files/
2+
.DS_Store
3+
.eslintcache
4+
.pnp
5+
.pnp.js
6+
*.bak
7+
*.local
8+
*.log
9+
*.tgz
10+
*.tmp
11+
*~
12+
/build
13+
/coverage
14+
/dist
15+
/release
16+
~*
17+
node_modules
18+
npm-debug.log*
19+
package-lock.json
20+
**/*.tsbuildinfo

.markdownlint.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"default": true,
3+
"line-length": false,
4+
"no-duplicate-header": { "siblings_only": true },
5+
"no-inline-html": false
6+
}

.prettierrc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"offsetTernaryExpressions": true,
3+
"arrowParens": "avoid",
4+
"generatorStarSpacing": true,
5+
"printWidth": 92,
6+
"quoteProps": "consistent",
7+
"semi": false,
8+
"singleQuote": true,
9+
"spaceBeforeFunctionParen": false,
10+
"yieldStarSpacing": true
11+
}

.vscode/settings.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"javascript.format.enable": false,
3+
"typescript.format.enable": false,
4+
"eslint.format.enable": true,
5+
"[javascript]": {
6+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
7+
"editor.formatOnSave": true
8+
},
9+
"[javascriptreact]": {
10+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
11+
"editor.formatOnSave": true
12+
},
13+
"[typescript]": {
14+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
15+
"editor.formatOnSave": true
16+
},
17+
"[typescriptreact]": {
18+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
19+
"editor.formatOnSave": true
20+
},
21+
"files.associations": {
22+
".prettierignore": "ignore",
23+
"**/src/**/*.json": "jsonc",
24+
"{icons,babel.config}.json": "jsonc"
25+
},
26+
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# make-sprites Changes
2+
3+
## \[0.1.0] - 2021-02-17
4+
5+
First public release (WIP)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 QuITS
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# MakeSprites
2+
3+
WIP
4+
5+
Sprites from...
6+
7+
- [FontAwesome](https://fontawesome.com/icons?d=gallery&s=brands,regular,solid&m=free)
8+
- [Web Icons](https://getbootstrapadmin.com/remark/base/uikit/icons/web-icons.html)

data/fab-defs.json

Lines changed: 2292 additions & 0 deletions
Large diffs are not rendered by default.

data/far-defs.json

Lines changed: 762 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)