From 3fb8493c657a7c65fa16eb966af7f075c79d919f Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Mon, 8 Jun 2020 15:33:57 -0600 Subject: [PATCH] enable visibility-annotation lint rule, https://github.com/phetsims/chipper/issues/932 --- eslint/.eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint/.eslintrc.js b/eslint/.eslintrc.js index 8b92bd26..ccb26090 100644 --- a/eslint/.eslintrc.js +++ b/eslint/.eslintrc.js @@ -79,7 +79,7 @@ module.exports = { 'single-line-import': 2, // method declarations must have a visibility annotation - // 'visibility-annotation': 2, + 'visibility-annotation': 2, // key and value arguments to namespace.register() must match 'namespace-match': 2,