Files
spartan-ecdsa/.eslintrc.js
2023-01-26 19:09:42 -08:00

28 lines
698 B
JavaScript
Executable File

/* eslint-disable no-undef */
module.exports = {
root: true,
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:security/recommended"
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 13,
sourceType: "module"
},
plugins: ["react", "@typescript-eslint", "security"],
rules: {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
}
};