e50b503897
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-empty": "off",
|
|
"no-prototype-builtins": "off",
|
|
"no-unused-vars": "warn"
|
|
}
|
|
};
|