diff --git a/ui/.eslintrc.js b/ui/.eslintrc.js new file mode 100644 index 0000000..ab2b18f --- /dev/null +++ b/ui/.eslintrc.js @@ -0,0 +1,18 @@ +module.exports = { + 'extends': ['google', 'plugin:react/recommended'], + 'parser': 'babel-eslint', + 'env': { + 'browser': true, + }, + 'globals': { + 'React': true, + }, + 'plugins': ['react', 'babel'], + 'rules': { + 'linebreak-style': 0, + 'max-len': ['error', 140], + 'require-jsdoc': 0, + 'babel/no-invalid-this': 1, + 'no-invalid-this': 0, + }, +}; \ No newline at end of file