mirror of
https://gitgud.io/Vrelnir/degrees-of-lewdity.git
synced 2026-09-15 06:04:27 +08:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
export default {
|
|
"*.{js,cjs}": filenames => `eslint --cache --fix "${filenames.join('" "')}"`,
|
|
"*.css": "stylelint --fix",
|
|
// Format other files with Prettier
|
|
"!(*.{js,cjs,css,yml})": "prettier --ignore-unknown --write",
|
|
};
|