diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 20:02:23 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 20:02:23 +0300 |
commit | 937a2257f801f784ab03719abf6875612d9649f0 (patch) | |
tree | e60810b12050d3ceb6e74eda3406038e2f9027da /src | |
parent | 0419c2558d380cd13f6d0c1f3944b8474b4cf87c (diff) | |
download | eslint-config-937a2257f801f784ab03719abf6875612d9649f0.tar.xz eslint-config-937a2257f801f784ab03719abf6875612d9649f0.zip |
feat(eslint): no-whitespace-before-property
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r-- | src/rules/javascript/default.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rules/javascript/default.json b/src/rules/javascript/default.json index 231730c..1ca2593 100644 --- a/src/rules/javascript/default.json +++ b/src/rules/javascript/default.json @@ -449,6 +449,9 @@ "no-var": [ "error" ], + "no-whitespace-before-property": [ + "error" + ], "no-with": [ "error" ], |