create-iamturns-app
Version:
App generator for my projects
22 lines (21 loc) • 667 B
JavaScript
module.exports = {
linters: {
"DEVELOPING.md": ["npm run format:developing", "git add"],
"package.json": ["npm run format:package", "git add"],
".editorconfig": ["prettier --write", "git add"],
LICENSE: ["prettier --write", "git add"],
"**/*.{css,gql,graphql,html,json,less,md,mdx,scss,vue,yaml,yml}": [
"prettier --write",
"git add",
],
"**/*.{js,jsx,ts,tsx}": [
"import-sort --write",
"prettier --write",
"eslint --cache --ext '.js,.jsx,.ts,.tsx' --fix",
"git add",
"jest --bail --findRelatedTests",
],
},
// The formatting tools are ordered to run sequentially
concurrent: false,
}