Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epidemian
GitHub Repository: epidemian/eslint-plugin-import
Path: blob/main/config/errors.js
828 views
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'],
8
rules: { 'import/no-unresolved': 2,
9
'import/named': 2,
10
'import/namespace': 2,
11
'import/default': 2,
12
'import/export': 2,
13
},
14
};
15
16