@moonwalker/pre-flight-check

Linting, formatting and tooling for :moon: :walking:

Usage no npm install needed!

<script type="module">
  import moonwalkerPreFlightCheck from 'https://cdn.skypack.dev/@moonwalker/pre-flight-check';
</script>

README

pre-flight-check

npmjs renovatebot ci

Linting, formatting and tooling for :moon: :walking:

Install

npm install --dev @moonwalker/pre-flight-check

Configuration

Eslint

// eslint config (eslint.config.js)
module.exports = {
  extends: ['@moonwalker/pre-flight-check/eslint']
}

or for node:

// eslint config (eslint.config.js)
module.exports = {
  extends: ['@moonwalker/pre-flight-check/eslint-base']
}

Stylelint

// stylelint.config.js
module.exports = {
  extends: '@moonwalker/pre-flight-check/stylelint'
};

Prettier

// prettier.config.js
module.exports = require('@moonwalker/pre-flight-check/prettier');

Husky

// .huskyrc.js
module.exports = require('@moonwalker/pre-flight-check/husky');

lint-staged

// lint-staged.config.js
module.exports = require('@moonwalker/pre-flight-check/lint-staged');