diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 11:45:20 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 11:45:20 +0300 |
commit | d28e9d909b4e1aa9059c668453da7d8dc2f0b6f0 (patch) | |
tree | e0b05275a01ae84c16a5617fd72d105335af9d38 /src/rules/import/default.json | |
parent | d7fbade96c19c663c4440805665d1aba26c1ccfd (diff) | |
download | eslint-config-d28e9d909b4e1aa9059c668453da7d8dc2f0b6f0.tar.xz eslint-config-d28e9d909b4e1aa9059c668453da7d8dc2f0b6f0.zip |
feat(project): Refactoring directories
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules/import/default.json')
-rw-r--r-- | src/rules/import/default.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/rules/import/default.json b/src/rules/import/default.json new file mode 100644 index 0000000..77ec282 --- /dev/null +++ b/src/rules/import/default.json @@ -0,0 +1,17 @@ +{ + "import/exports-last": [ + "error" + ], + "import/first": [ + "error" + ], + "import/newline-after-import": [ + "error", + { + "count": 1 + } + ], + "import/no-webpack-loader-syntax": [ + "error" + ] +} |