@turimmfo/eslint-config
v0.0.33
Published
ESLint/Prettier configuration used by Turim MFO.
Readme
Turim's ESLint/Prettier configuration
Install it:
yarn add @turimmfo/eslint-configMake sure you have the peer-dependencies:
yarn add eslint prettier typescriptCreate a .eslintrc.js in the root folder:
module.exports = {
extends: ["@turimmfo/eslint-config"],
};Check it:
npx eslint --ext .js,.jsx,.ts,.tsx .Try to fix it automatically:
npx eslint --ext .js,.jsx,.ts,.tsx . --fix