mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
1ed53b153c
* build: enable consistent type imports eslint rule * change to warn * fix the warning in example and excalidraw-app * fix packages * enable type annotations and throw error for the rule
9 lines
324 B
JSON
9 lines
324 B
JSON
{
|
|
"extends": ["@excalidraw/eslint-config", "react-app"],
|
|
"rules": {
|
|
"import/no-anonymous-default-export": "off",
|
|
"no-restricted-globals": "off",
|
|
"@typescript-eslint/consistent-type-imports": ["error", { "prefer": "type-imports", "disallowTypeAnnotations": false, "fixStyle": "separate-type-imports" }]
|
|
}
|
|
}
|