-
Notifications
You must be signed in to change notification settings - Fork 1
Contributing to scriptlint
Moritz Jacobs edited this page Sep 10, 2020
·
4 revisions
We maintain an active list of issues and welcome discussion, contributions and PRs! If you have any questions, don't hesitate to write an issue!
scriptlint on npm is released automatically using semantic-release, so we are quick to release any improvements, patches etc.
npm install
npm run build
npm link
npm run dev
- in another project
npm link "scriptlint"
- in that project's
package.json
:
"scripts": {
…
"test:lint:scripts": "scriptlint",
…
},
Then run with npm run test:lint:scripts
to see the problems in that project's package scripts.
- Motivation
- The scriptlint "standard" tl;dr
-
The scriptlint "standard"
- Rules enforceable via the scriptlint CLI
- Best practices
- The scriptlint CLI
- Contributing to scriptlint