mirror of
https://github.com/AtHeartEngineer/spartan-ecdsa.git
synced 2026-01-09 05:18:01 -05:00
28 lines
698 B
JavaScript
Executable File
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",
|
|
}
|
|
};
|