From cf2c56c7061b7ed40fdd3b40a352ddb9c9b7371f Mon Sep 17 00:00:00 2001 From: alexwl Date: Tue, 2 Oct 2018 13:17:04 +0300 Subject: Initial commit --- javascript/.eslintrc.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 javascript/.eslintrc.js (limited to 'javascript/.eslintrc.js') diff --git a/javascript/.eslintrc.js b/javascript/.eslintrc.js new file mode 100644 index 0000000..56940e4 --- /dev/null +++ b/javascript/.eslintrc.js @@ -0,0 +1,15 @@ +module.exports = { + root: true, + parserOptions: { + ecmaVersion: 2017, + sourceType: 'module' + }, + extends: 'eslint:recommended', + env: { + browser: true + }, + rules: { + 'no-console':0, + "no-useless-escape": 0 + } +}; -- cgit v1.2.3