Skip to content

Commit aaab128

Browse files
committed
πŸŽ‰ Init repo
1 parent 3f7a2e9 commit aaab128

34 files changed

+20362
-1
lines changed

β€Ž.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

β€Ž.eslintrc

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"plugins": [
7+
"svelte3"
8+
],
9+
"extends": ["airbnb-base/legacy"],
10+
"parserOptions": {
11+
"ecmaVersion": 11,
12+
"sourceType": "module"
13+
},
14+
"overrides": [
15+
{
16+
"files": ["*.svelte"],
17+
"processor": "svelte3/svelte3"
18+
}
19+
],
20+
"rules": {
21+
"eol-last": ["error", "always"],
22+
"indent": ["warn", 2],
23+
"linebreak-style": "off",
24+
"max-len": ["error", { "code": 110, "ignoreComments": true }],
25+
"no-param-reassign": "off",
26+
"semi": ["error", "never"]
27+
}
28+
}

β€Ž.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules/
2+
/public/build/
3+
4+
.DS_Store

β€ŽREADME.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,18 @@
1-
# clean-css.github.io
1+
# svelte app
2+
3+
## Get started
4+
5+
Install the dependencies...
6+
7+
```bash
8+
cd svelte-app
9+
npm install
10+
```
11+
12+
...then start webpack:
13+
14+
```bash
15+
npm run start
16+
```
17+
18+
Navigate to [localhost:8080](http://localhost:8080).

0 commit comments

Comments
Β (0)