mirror of
https://github.com/hestiacp/hestiacp.git
synced 2025-02-06 09:45:30 +00:00
11 lines
317 B
JavaScript
11 lines
317 B
JavaScript
module.exports = {
|
|
// Run markdownlint on MD files
|
|
'*.md': 'markdownlint-cli2 --fix',
|
|
// Run Stylelint on CSS files
|
|
'*.css': 'stylelint --fix --allow-empty-input',
|
|
// Run ESLint on TS, TSX, JS, JSX files
|
|
'*.{ts,js}?(x)': 'eslint --fix',
|
|
// Run Prettier everywhere
|
|
'*': 'prettier --write --ignore-unknown',
|
|
};
|