Skip to content

Commit 15fa93b

Browse files
committedSep 1, 2023
Add files
1 parent fc8b429 commit 15fa93b

7 files changed

+207
-0
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Folders
2+
/node_modules

‎.prettierignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Folders
2+
/.github
3+
/node_modules
4+
5+
# Files
6+
LICENSE
7+
pnpm-lock.yaml

‎.prettierrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"useTabs": false,
3+
"singleQuote": false,
4+
"printWidth": 140,
5+
"tabWidth": 4,
6+
"trailingComma": "none",
7+
"overrides": [
8+
{
9+
"files": "package.json",
10+
"options": {
11+
"tabWidth": 2
12+
}
13+
}
14+
]
15+
}

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Saltssaumure
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.

‎package.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "salt-quickscss",
3+
"version": "1.0.0",
4+
"description": "QuickSCSS for Replugged",
5+
"repository": "github:Saltssaumure/QuickSCSS",
6+
"author": "Saltssaumure <themes@saltssaumure.net>",
7+
"license": "MIT",
8+
"private": true,
9+
"scripts": {
10+
"lint": "prettier ./scss --write --log-level warn",
11+
"watch": "sass --watch --no-source-map scss/main.scss:../main.css"
12+
},
13+
"dependencies": {
14+
"prettier": "^3.0.3",
15+
"sass": "^1.66.1"
16+
}
17+
}

‎pnpm-lock.yaml

+145
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎scss/main.scss

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.