1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-17 01:15:52 +02:00

build(deps): update latest

This commit is contained in:
Divlo 2023-01-10 13:27:35 +01:00
parent fcc107bdec
commit e24964a60a
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
7 changed files with 1160 additions and 9800 deletions

View File

@ -24,5 +24,5 @@ jobs:
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- run: 'npm run lint:editorconfig'
- run: 'npm run lint:markdown'
- run: 'npm run lint:javascript'
- run: 'npm run lint:eslint'
- run: 'npm run lint:prettier'

View File

@ -1,10 +1,5 @@
{
"config": {
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
},
"globs": ["**/*.{md,mdx}"],
"ignores": ["**/node_modules"]
"ignores": ["**/node_modules"],
"customRules": ["markdownlint-rule-relative-links"]
}

7
.markdownlint.json Normal file
View File

@ -0,0 +1,7 @@
{
"default": true,
"relative-links": true,
"extends": "markdownlint/style/prettier",
"MD033": false,
"MD041": false
}

View File

@ -109,7 +109,7 @@ echo {}> .prettierrc.json
```jsonc
{
"scripts": {
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\""
}
}
@ -118,9 +118,9 @@ echo {}> .prettierrc.json
### Usage
```sh
npm run lint:typescript
npm run lint:eslint
# or to apply automatic fixes to code
npm run lint:typescript -- --fix
npm run lint:eslint -- --fix
# Validate code formatting in all supported languages by Prettier
npm run lint:prettier

10900
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -35,7 +35,7 @@
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:javascript": "eslint \"**/*.{js,jsx,ts,tsx}\" -c \"eslintrc.json\"",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" -c \"eslintrc.json\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"lint:staged": "lint-staged",
"test": "tap",
@ -51,24 +51,26 @@
"eslint-plugin-unicorn": "^45.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@commitlint/cli": "17.4.1",
"@commitlint/config-conventional": "17.4.0",
"@tsconfig/strictest": "1.0.2",
"@types/eslint": "8.4.10",
"@types/tap": "15.0.7",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"editorconfig-checker": "4.0.2",
"eslint": "8.28.0",
"eslint": "8.31.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "45.0.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"markdownlint-cli2": "0.5.1",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"markdownlint-cli2": "0.6.0",
"markdownlint-rule-relative-links": "1.1.1",
"pinst": "3.0.0",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"tap": "16.3.2",
"typescript": "4.9.3"
"prettier": "2.8.2",
"semantic-release": "20.0.2",
"tap": "16.3.3",
"typescript": "4.9.4"
}
}

View File

@ -1,12 +1,10 @@
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"lib": ["ESNext"],
"moduleResolution": "node",
"rootDir": "./",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true
"rootDir": "./"
}
}