aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-10 12:12:11 +0200
committerLarsVomMars2020-10-10 12:12:11 +0200
commit8377cd9881167dcde40f0947c623ddbb64120747 (patch)
tree249005836358fc73049b3e4c2c8c6040830353b1 /.eslintrc.js
parent7a4ade2036140203cee39cc7622f835114862515 (diff)
Some npm scripts
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js21
1 files changed, 11 insertions, 10 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 4d11b96..8b48d88 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,14 +1,15 @@
module.exports = {
- "env": {
- "browser": true,
- "commonjs": true,
- "es2020": true,
- "node": true
+ env: {
+ browser: true,
+ commonjs: true,
+ es2020: true,
+ node: true,
},
- "extends": "eslint:recommended",
- "parserOptions": {
- "ecmaVersion": 11
+ extends: "eslint:recommended",
+ parserOptions: {
+ ecmaVersion: 11,
+ },
+ rules: {
+ "no-unused-vars": "warn",
},
- "rules": {
- }
};