Stop breaking the damn lint

imgbot
KieranRobson 2023-01-14 09:12:42 +00:00
parent f25c4c5274
commit 1c37f10346
1 changed files with 36 additions and 36 deletions

View File

@ -1,38 +1,38 @@
{ {
"name": "hullcss", "name": "hullcss",
"version": "3.0.0", "version": "3.0.0",
"description": "", "description": "",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {
"spell": "cspell /**/", "spell": "cspell /**/",
"spell:code": "cspell src/**/", "spell:code": "cspell src/**/",
"lint": "npx eslint src", "lint": "npx eslint src",
"lint:fix": "yarn run lint -- --fix", "lint:fix": "yarn run lint -- --fix",
"lint:language": "alex src/**/", "lint:language": "alex src/**/",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\"", "lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\"",
"prettier:code": "npx prettier src --check", "prettier:code": "npx prettier src --check",
"prettier:code:fix": "yarn run prettier -- --write", "prettier:code:fix": "yarn run prettier -- --write",
"prettier:all:fix": "prettier . --write", "prettier:all:fix": "prettier . --write",
"format": "yarn run prettier:all:fix && yarn run lint:fix" "format": "yarn run prettier:all:fix && yarn run lint:fix"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@discordjs/builders": "^1.4.0", "@discordjs/builders": "^1.4.0",
"discord-api-types": "^0.37.28", "discord-api-types": "^0.37.28",
"discord.js": "^13.12.0", "discord.js": "^13.12.0",
"dotenv": "^16.0.3", "dotenv": "^16.0.3",
"glob": "^7.2.3", "glob": "^7.2.3",
"json-to-frontmatter-markdown": "^1.0.0" "json-to-frontmatter-markdown": "^1.0.0"
}, },
"devDependencies": { "devDependencies": {
"alex": "^11.0.0", "alex": "^11.0.0",
"cspell": "^6.18.1", "cspell": "^6.18.1",
"eslint": "^8.31.0", "eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0", "eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4", "eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3" "prettier": "^2.8.3"
} }
} }