Skip to content

Commit b97ed72

Browse files
committed
format document wrt prettier rules
1 parent 3468989 commit b97ed72

16 files changed

+5351
-5362
lines changed

.eslintrc.js

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
module.exports = {
2-
env: {
3-
node: true,
4-
},
5-
extends: [
6-
'eslint:recommended',
7-
"plugin:vue/vue3-recommended",
8-
"prettier"
9-
],
10-
rules: {
11-
// override/add rules settings here, such as:
12-
// 'vue/no-unused-vars': 'error'
13-
}
14-
}
2+
env: {
3+
node: true,
4+
},
5+
extends: ["eslint:recommended", "plugin:vue/vue3-recommended", "prettier"],
6+
rules: {
7+
// override/add rules settings here, such as:
8+
// 'vue/no-unused-vars': 'error'
9+
},
10+
};

.prettierrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"tabWidth": 4,
3-
"useTabs": false
2+
"tabWidth": 4,
3+
"useTabs": false
44
}

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"recommendations": ["Vue.volar"]
2+
"recommendations": ["Vue.volar"]
33
}

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# GSoC'22 Project - Work In Progress
22

33
## New Frontend Framework for Simulator UI.
4-
The project focuses on replacing JqueryUI with a modern frontend framework.
4+
5+
The project focuses on replacing JqueryUI with a modern frontend framework.
6+
57
1. Decoupling the Simulator from backend
6-
2. Dividing into Components
7-
3. Sate Management
8-
4. Refactoring CSS
9-
5. Internationalization using Vue-i18n
8+
2. Dividing into Components
9+
3. Sate Management
10+
4. Refactoring CSS
11+
5. Internationalization using Vue-i18n

index.html

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<!DOCTYPE html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>CircuitVerse - Vue</title>
8+
</head>
39

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" href="/favicon.ico" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>CircuitVerse - Vue</title>
9-
</head>
10-
11-
<body>
12-
<div id="app"></div>
13-
<script type="module" src="/src/main.ts"></script>
14-
</body>
15-
10+
<body>
11+
<div id="app"></div>
12+
<script type="module" src="/src/main.ts"></script>
13+
</body>
1614
</html>

0 commit comments

Comments
 (0)