Skip to content

Commit daf9737

Browse files
committed
refactor: improve code style of files [#1]
1 parent ad09be8 commit daf9737

File tree

3 files changed

+31
-35
lines changed

3 files changed

+31
-35
lines changed

.commitlintrc.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"@d3p1/commitlint-config"
4-
]
2+
"extends": ["@d3p1/commitlint-config"]
53
}

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"DavidAnson.vscode-markdownlint"
1717
],
1818
"settings": {
19-
"editor.rulers": [
20-
80
21-
],
19+
"editor.rulers": [80],
2220
"editor.defaultFormatter": "esbenp.prettier-vscode",
2321
"editor.formatOnSave": true
2422
}

package.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "@d3p1/base-css-template",
3-
"version": "1.1.0",
4-
"description": "A template to build things using CSS",
5-
"private": true,
6-
"type": "module",
7-
"scripts": {
8-
"format:code": "prettier --ignore-path .gitignore --check src",
9-
"format:code:fix": "npm run format:code -- --write",
10-
"refactor": "npm run format:code:fix"
11-
},
12-
"repository": {
13-
"type": "git",
14-
"url": "git+https://github.com/d3p1/base-css-template.git"
15-
},
16-
"keywords": [
17-
"template"
18-
],
19-
"author": "C. M. de Picciotto <d3p1@d3p1.dev> (https://d3p1.dev/)",
20-
"license": "MIT",
21-
"bugs": {
22-
"url": "https://github.com/d3p1/base-css-template/issues"
23-
},
24-
"homepage": "https://github.com/d3p1/base-css-template#readme",
25-
"devDependencies": {
26-
"@commitlint/cli": "^17.8.0",
27-
"@d3p1/commitlint-config": "^1.0.0",
28-
"husky": "^8.0.3",
29-
"prettier": "3.0.3"
30-
}
2+
"name": "@d3p1/base-css-template",
3+
"version": "1.1.0",
4+
"description": "A template to build things using CSS",
5+
"private": true,
6+
"type": "module",
7+
"scripts": {
8+
"format:code": "prettier --ignore-path .gitignore --check src",
9+
"format:code:fix": "npm run format:code -- --write",
10+
"refactor": "npm run format:code:fix"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/d3p1/base-css-template.git"
15+
},
16+
"keywords": [
17+
"template"
18+
],
19+
"author": "C. M. de Picciotto <d3p1@d3p1.dev> (https://d3p1.dev/)",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/d3p1/base-css-template/issues"
23+
},
24+
"homepage": "https://github.com/d3p1/base-css-template#readme",
25+
"devDependencies": {
26+
"@commitlint/cli": "^17.8.0",
27+
"@d3p1/commitlint-config": "^1.0.0",
28+
"husky": "^8.0.3",
29+
"prettier": "3.0.3"
30+
}
3131
}

0 commit comments

Comments
 (0)