mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
module.exports = {
|
|
linters: {
|
|
'{src,test}/**/*.js': ['eslint --fix', 'git add'],
|
|
'*.md': ['prettier --write', 'git add'],
|
|
},
|
|
ignore: ['**/dist/**/*.js'],
|
|
};
|