File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ This plugin intends to support linting of ES2015+ (ES6+) import/export syntax, a
12
12
13
13
## Rules
14
14
15
- ** Static analysis: **
15
+ ### Static analysis
16
16
17
17
* Ensure imports point to a file/module that can be resolved. ([ ` no-unresolved ` ] )
18
18
* Ensure named imports correspond to a named export in the remote file. ([ ` named ` ] )
@@ -36,7 +36,7 @@ This plugin intends to support linting of ES2015+ (ES6+) import/export syntax, a
36
36
[ `no-webpack-loader-syntax` ] : ./docs/rules/no-webpack-loader-syntax.md
37
37
[ `no-self-import` ] : ./docs/rules/no-self-import.md
38
38
39
- ** Helpful warnings: **
39
+ ### Helpful warnings
40
40
41
41
42
42
* Report any invalid exports, i.e. re-export of the same name ([ ` export ` ] )
@@ -53,7 +53,7 @@ This plugin intends to support linting of ES2015+ (ES6+) import/export syntax, a
53
53
[ `no-extraneous-dependencies` ] : ./docs/rules/no-extraneous-dependencies.md
54
54
[ `no-mutable-exports` ] : ./docs/rules/no-mutable-exports.md
55
55
56
- ** Module systems: **
56
+ ### Module systems
57
57
58
58
* Report potentially ambiguous parse goal (` script ` vs. ` module ` ) ([ ` unambiguous ` ] )
59
59
* Report CommonJS ` require ` calls and ` module.exports ` or ` exports.* ` . ([ ` no-commonjs ` ] )
@@ -66,7 +66,7 @@ This plugin intends to support linting of ES2015+ (ES6+) import/export syntax, a
66
66
[ `no-nodejs-modules` ] : ./docs/rules/no-nodejs-modules.md
67
67
68
68
69
- ** Style guide: **
69
+ ### Style guide
70
70
71
71
* Ensure all imports appear before other statements ([ ` first ` ] )
72
72
* Ensure all exports appear after other statements ([ ` exports-last ` ] )
You can’t perform that action at this time.
0 commit comments