mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 17:29:11 +00:00
6 lines
195 B
JavaScript
6 lines
195 B
JavaScript
export default {
|
|
'*.{js,ts,json,html,xml,css,scss,sass,md}': 'cspell --no-must-find-files',
|
|
'src/**/*.{js,ts}': 'eslint --max-warnings 0 --fix',
|
|
'*': 'prettier --write --ignore-unknown'
|
|
};
|