mirror of
https://github.com/developit/microbundle.git
synced 2026-01-18 13:56:35 +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'],
|
|
};
|