aboutsummaryrefslogtreecommitdiff
path: root/src/rules/import/default.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-14 11:45:20 +0300
committerValentin Popov <info@valentineus.link>2020-02-14 11:45:20 +0300
commitd28e9d909b4e1aa9059c668453da7d8dc2f0b6f0 (patch)
treee0b05275a01ae84c16a5617fd72d105335af9d38 /src/rules/import/default.json
parentd7fbade96c19c663c4440805665d1aba26c1ccfd (diff)
downloadeslint-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.json17
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"
+ ]
+}