chore: configure ESLint to lint .* configfiles too

This commit is contained in:
Jeroen de Bruijn 2020-03-28 21:17:33 +01:00
parent 3ed9e7d709
commit 9cda1d8f0f
No known key found for this signature in database
GPG key ID: 3A2677A1DF38FF9F
3 changed files with 21 additions and 9 deletions

View file

@ -19,4 +19,15 @@ module.exports = {
'prettier/prettier': 'error',
'sort-imports': 'error',
},
ignorePatterns: [
'.git/',
'.vscode',
'build/',
'dist/',
'coverage/',
'LICENSE.md',
'modules/',
'node_modules/',
'!.*',
],
};