better-coding-script
v3.0.0
Published
A set of scripts to run in JavaScript and Typescript projects to easily parse your code through ESLint recommended rules and prettier. It also has specific rules for React projects (both JSX and TSX).
Downloads
13
Maintainers
Readme
Better Coding Script
This package is a set of scripts to run in JavaScript and Typescript projects to parse your code easily through ESLint recommended rules and prettier. It also has specific rules for React projects (both JSX and TSX).
This is the initial idea, and I have already been using it for a long list of projects, so, decided to share it with the community.
Installation
npm install better-coding-script --save-dev
or
yarn add better-coding-script --dev
You can also install the package globally (
-g
) to run it in any project without adding a new dependency!
Style Guide
It uses an automatic code formatter called Prettier. Run bcs prettier
after making any changes to the code.
Then, our linter will catch most issues that may exist in your code. You can check the status of your code styling by simply running bcs linc
.
However, there are still some styles that the linter cannot pick up. If you are unsure about something, looking at Airbnb’s Style Guide will guide you in the right direction.
Usage
The main command is
better-coding-script
but there is a short/alias asbcs
npx better-coding-script <command> <option>
Or add a script to your packages.json
"command": "bcs <command> <option>"
API
lint run ESLint for all files in the project (add --fix to apply the fixes)
linc run ESLint for modified files only in the project (add --fix to apply the fixes)
prettier run Prettier check for all files in the project
Additional Options:
check-changed run Prettier check for modified files only in the project
write run Prettier and fix styling for all files in the project
write-changed run Prettier and fix styling for modified files only in the project
Using each command
bcs lint
: run ESLint for all files in the projectbcs lint --fix
: run ESLint for all files and fix the code when possible in the projectbcs linc
: run ESLint for modified files only in the projectbcs linc --fix
: run ESLint for modified files only and fix the code when possible in the projectbcs prettier
: run Prettiercheck
for all files in the projectbcs prettier check-changed
: run Prettiercheck
for modified files only in the projectbcs prettier write
: run Prettier and fix styling for all files in the projectbcs prettier write-changed
: run Prettier and fix styling for modified files only in the projectbcs -h
: show list of commandsbcs -v
: show version
ESLINT in your project
Create a file called .eslintrc.js
and add the following content
module.exports = {
extends: [require.resolve('better-coding-script')],
};
Other points
Code of Conduct
I decided to adopted (as Facebook) the [Contributor Covenant]https://www.contributor-covenant.org/) as our Code of Conduct, and we expect project participants to adhere to it. Please read the full text so that you can understand what actions will and will not be tolerated.
Semantic Versioning
Better Coding Script
follows semantic versioning. We release patch versions for critical bugfixes, minor versions for new features or non-essential changes, and major versions for any breaking changes.
Branch Organization
Submit all changes directly to the master branch
. We don’t use separate branches for development or for upcoming releases. We do our best to keep master in good shape, with all tests passing.