eslint-config-evil-vue
Version:
eslint-config-hardcore inspired ultra strict VueJS compatible ESLint config
16 lines • 674 B
JavaScript
module.exports = {
plugins: ["security"],
rules: {
"security/detect-buffer-noassert": "error",
"security/detect-child-process": "error",
"security/detect-disable-mustache-escape": "error",
"security/detect-eval-with-expression": "error",
"security/detect-new-buffer": "error",
"security/detect-no-csrf-before-method-override": "error",
"security/detect-non-literal-regexp": "error",
"security/detect-non-literal-require": "error",
"security/detect-possible-timing-attacks": "error",
"security/detect-pseudoRandomBytes": "error",
"security/detect-unsafe-regex": "error",
}
};