5 Commits

Author SHA1 Message Date
bfb1636d2a chore(deps): update minor and patch version dependencies
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-29 00:28:30 +00:00
4a4d4c3c5d chore(deps): update minor and patch version dependencies (master) (#13)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #13
Co-authored-by: Renovate Bot <no-reply@io-projects.com>
Co-committed-by: Renovate Bot <no-reply@io-projects.com>
2023-10-01 22:09:42 +02:00
117ee2b7cb chore(deps): update minor and patch version dependencies (master) (#11)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #11
Co-authored-by: Renovate Bot <no-reply@io-projects.com>
Co-committed-by: Renovate Bot <no-reply@io-projects.com>
2023-09-24 14:34:24 +02:00
24c9e4df2c chore(ci): 1.2.0
All checks were successful
continuous-integration/drone/push Build is passing
2023-09-03 15:18:16 +00:00
2bca32b537 fix: prettier to warning and trailingComma (#10)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
Reviewed-on: #10
Co-authored-by: EndMove <superjeremi1302@gmail.com>
Co-committed-by: EndMove <superjeremi1302@gmail.com>
2023-09-03 17:17:30 +02:00
4 changed files with 348 additions and 521 deletions

View File

@@ -110,7 +110,7 @@
"dot-notation": "warn", "dot-notation": "warn",
"quotes": ["error", "single"], "quotes": ["error", "single"],
"prettier/prettier": [ "prettier/prettier": [
"error", "warn",
{ {
"printWidth": 120, "printWidth": 120,
"tabWidth": 2, "tabWidth": 2,
@@ -121,7 +121,8 @@
"jsxSingleQuote": false, "jsxSingleQuote": false,
"bracketSpacing": true, "bracketSpacing": true,
"bracketSameLine": false, "bracketSameLine": false,
"arrowParens": "always" "arrowParens": "always",
"trailingComma": "es5"
} }
] ]
}, },

838
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ioprojects/eslint-config", "name": "@ioprojects/eslint-config",
"version": "1.1.1", "version": "1.2.0",
"description": "NPM package for ESLINT configuration of IO-Projects TypeScript front-end projects", "description": "NPM package for ESLINT configuration of IO-Projects TypeScript front-end projects",
"author": "IO-Projects <contact@io-projects.com>", "author": "IO-Projects <contact@io-projects.com>",
"license": "SEE LICENSE FILE", "license": "SEE LICENSE FILE",
@@ -9,15 +9,15 @@
".eslintrc.json" ".eslintrc.json"
], ],
"dependencies": { "dependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0", "@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.5.0", "@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.48.0", "eslint": "^8.52.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0", "eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1", "eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.2.3", "eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.0", "eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.17.0", "eslint-plugin-vue": "^9.18.1",
"prettier": "^3.0.3" "prettier": "^3.0.3"
}, },
"repository": { "repository": {

View File

@@ -1,4 +1,8 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabled": true "enabled": true,
"packageRules": [{
"packageNames": ["node"],
"enabled": false
}]
} }