Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: .eslintrc.js

Issue 2909503003: WebUI: Enable ESLint rule for missing semicolons. (Closed)
Patch Set: Undo local_ntp changes from this CL. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: .eslintrc.js
diff --git a/.eslintrc.js b/.eslintrc.js
index 9b4b1037ce4fc136daafe0e66419f9a5ce13f2cb..79c117d75acb46214eed58cf677500cfcc9bfe50 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -11,6 +11,7 @@ module.exports = {
'rules': {
// Enabled checks.
'no-extra-semi': 'error',
+ 'semi': ['error', 'always'],
// TODO(dpapad): Add more checks according to our styleguide.
},
};

Powered by Google App Engine
This is Rietveld 408576698