mirror of
https://github.com/gosticks/svgr.git
synced 2025-10-16 11:55:43 +00:00
The whole codebase has been rewritten to TypeScript. BREAKING CHANGE: template signature has changed
27 lines
599 B
JSON
27 lines
599 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react-hooks/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-empty-function": "warn",
|
|
"@typescript-eslint/ban-types": "warn",
|
|
"react/prop-types": "off"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|