Skip to content
Permalink
Newer
Older
100644 14 lines (14 sloc) 312 Bytes
Ignoring revisions in .git-blame-ignore-revs.
September 14, 2020 10:42
1
/**
2
* unopinionated config. just the things that are necessarily runtime errors
3
* waiting to happen.
4
* @type {Object}
5
*/
6
module.exports = {
7
plugins: ['import'],
July 27, 2021 16:54
8
rules: { 'import/no-unresolved': 2,
9
'import/named': 2,
10
'import/namespace': 2,
11
'import/default': 2,
12
'import/export': 2,
13
},
14
};