mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
chore: pull config files out of package.json
This commit is contained in:
26
.commitlintrc.json
Normal file
26
.commitlintrc.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"extends": ["@commitlint/config-angular"],
|
||||||
|
"rules": {
|
||||||
|
"scope-case": [2, "always", "pascal-case"],
|
||||||
|
"type-enum": [
|
||||||
|
2,
|
||||||
|
"always",
|
||||||
|
[
|
||||||
|
"chore",
|
||||||
|
"build",
|
||||||
|
"ci",
|
||||||
|
"docs",
|
||||||
|
"feat",
|
||||||
|
"fix",
|
||||||
|
"perf",
|
||||||
|
"refactor",
|
||||||
|
"revert",
|
||||||
|
"style",
|
||||||
|
"test",
|
||||||
|
"types",
|
||||||
|
"workflow",
|
||||||
|
"wip"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,3 +20,4 @@ deploy/deploy_key.pub
|
|||||||
.idea/
|
.idea/
|
||||||
docs/docs.json
|
docs/docs.json
|
||||||
typings/index.js
|
typings/index.js
|
||||||
|
RELEASE_CHANGELOG.md
|
||||||
|
|||||||
4
.lintstagedrc.json
Normal file
4
.lintstagedrc.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"*.{mjs,js}": "eslint --fix --ext mjs,js,ts",
|
||||||
|
"*.{ts,json,yml,yaml}": "prettier --write"
|
||||||
|
}
|
||||||
7
.prettierrc.json
Normal file
7
.prettierrc.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"singleQuote": true,
|
||||||
|
"printWidth": 120,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"endOfLine": "lf",
|
||||||
|
"arrowParens": "avoid"
|
||||||
|
}
|
||||||
1584
package-lock.json
generated
1584
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
49
package.json
49
package.json
@@ -24,11 +24,12 @@
|
|||||||
"lint:typings": "tslint typings/index.d.ts",
|
"lint:typings": "tslint typings/index.d.ts",
|
||||||
"prettier": "prettier --write src/**/*.js typings/**/*.ts",
|
"prettier": "prettier --write src/**/*.js typings/**/*.ts",
|
||||||
"prepublishOnly": "npm run test",
|
"prepublishOnly": "npm run test",
|
||||||
"prepare": "is-ci || husky install"
|
"prepare": "is-ci || husky install",
|
||||||
|
"changelog": "conventional-changelog -p angular -i RELEASE_CHANGELOG.md -s"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/discordjs/discord.js.git"
|
"url": "https://github.com/discordjs/discord.js.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"discord",
|
"discord",
|
||||||
@@ -62,6 +63,7 @@
|
|||||||
"@commitlint/config-angular": "^12.1.4",
|
"@commitlint/config-angular": "^12.1.4",
|
||||||
"@discordjs/docgen": "^0.10.0",
|
"@discordjs/docgen": "^0.10.0",
|
||||||
"@types/node": "^12.12.6",
|
"@types/node": "^12.12.6",
|
||||||
|
"conventional-changelog-cli": "^2.1.1",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"dtslint": "^4.1.0",
|
"dtslint": "^4.1.0",
|
||||||
"eslint": "^7.27.0",
|
"eslint": "^7.27.0",
|
||||||
@@ -79,48 +81,5 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14.0.0",
|
"node": ">=14.0.0",
|
||||||
"npm": ">=7.0.0"
|
"npm": ">=7.0.0"
|
||||||
},
|
|
||||||
"lint-staged": {
|
|
||||||
"*.{mjs,js}": "eslint --fix --ext mjs,js,ts",
|
|
||||||
"*.{ts,json,yml,yaml}": "prettier --write"
|
|
||||||
},
|
|
||||||
"commitlint": {
|
|
||||||
"extends": [
|
|
||||||
"@commitlint/config-angular"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"scope-case": [
|
|
||||||
2,
|
|
||||||
"always",
|
|
||||||
"pascal-case"
|
|
||||||
],
|
|
||||||
"type-enum": [
|
|
||||||
2,
|
|
||||||
"always",
|
|
||||||
[
|
|
||||||
"chore",
|
|
||||||
"build",
|
|
||||||
"ci",
|
|
||||||
"docs",
|
|
||||||
"feat",
|
|
||||||
"fix",
|
|
||||||
"perf",
|
|
||||||
"refactor",
|
|
||||||
"revert",
|
|
||||||
"style",
|
|
||||||
"test",
|
|
||||||
"types",
|
|
||||||
"workflow",
|
|
||||||
"wip"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"prettier": {
|
|
||||||
"singleQuote": true,
|
|
||||||
"printWidth": 120,
|
|
||||||
"trailingComma": "all",
|
|
||||||
"endOfLine": "lf",
|
|
||||||
"arrowParens": "avoid"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user