Files
ivuorinen/package.json
Ismo Vuorinen 630108dc90 feat(workflow): update workflows, fix superlinter config (#8)
* chore(workflow): tweaks & moved .jscpd to root
* chore(config): add .checkov.yaml
* feat(lint): add @ivuorinen/base-configs, fix lints
* chore(lint): fix lint errors
* chore(lint): increase md max_line_length to 1000
* chore(workflows): run reviewdog on pull_request
* feat(config): add actrc for nektosact.com
* feat(lint): textlint configuration
* chore(lint): disable json and natural language
2024-09-16 11:58:42 +03:00

36 lines
853 B
JSON

{
"name": "@ivuorinen/ivuorinen",
"version": "1.0.0",
"description": "My GitHub Profile Readme",
"private": true,
"main": "index.js",
"author": "Ismo Vuorinen",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"textlint": "textlint -f pretty-error README.md",
"textlint:ci": "textlint -f checkstyle README.md",
"textlint:fix": "textlint --fix README.md",
"format": "prettier --write .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@ivuorinen/base-configs": "^2.0.2",
"eslint-plugin-prettier": "^5.2.1",
"textlint": "^14.2.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-no-todo": "^2.0.1"
},
"textlint": {
"plugins": {
"@textlint/markdown": true
},
"filters": {
"comments": true
},
"rules": {
"no-todo": true
}
}
}