diff options
author | 2021-01-26 12:27:15 +0300 | |
---|---|---|
committer | 2021-01-26 12:27:15 +0300 | |
commit | b0b6eebce016610848292b9ec4c2ccbd009bc8d9 (patch) | |
tree | 21da5a7b70a804ab8ce524cf98b04bc62c3a7811 | |
parent | Cleans Up Some Warnings (diff) |
Modifies Linting Rules
Adds a few rules to linting which are already followed, and help
maintain a cleaner style.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 7785702..82497c2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -39,7 +39,9 @@ "semi": [ "error", "always" - ] + ], + "no-trailing-spaces": "error", + "eol-last": "error" }, "settings": { "react": { |