{
  "env": {
    "node": true,
    "es2021": true
  },
  "extends": ["standard"],
  "plugins": ["security"],
  "parserOptions": {
    "ecmaVersion": "latest"
  },
  "rules": {
    "semi": ["error", "always"],
    "no-unused-vars": "warn",
    "no-console": "off",
    "indent": ["error", 2],
    "quotes": ["error", "single"],
    "object-curly-spacing": ["error", "always"],
    "security/detect-eval-with-expression": "error",
    "security/detect-non-literal-fs-filename": "warn",
    "security/detect-buffer-noassert": "error",
    "security/detect-possible-timing-attacks": "warn",
    "security/detect-no-csrf-before-method-override": "error"
  }
} 