mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-15 00:23:13 +01:00
27 lines
737 B
JSON
27 lines
737 B
JSON
{
|
|
"extends": ["conventions"],
|
|
"plugins": ["import-x"],
|
|
"rules": {
|
|
"import-x/no-absolute-path": "error",
|
|
"import-x/no-webpack-loader-syntax": "error",
|
|
"import-x/no-self-import": "error",
|
|
"import-x/no-useless-path-segments": "error",
|
|
"import-x/export": "error",
|
|
"import-x/no-duplicates": "error",
|
|
"import-x/no-named-default": "error",
|
|
"import-x/no-empty-named-blocks": "error",
|
|
"import-x/no-anonymous-default-export": "error",
|
|
"import-x/extensions": [
|
|
"error",
|
|
"ignorePackages",
|
|
{
|
|
"ts": "always",
|
|
"tsx": "always",
|
|
"js": "never",
|
|
"jsx": "never"
|
|
}
|
|
],
|
|
"import-x/consistent-type-specifier-style": ["error", "prefer-top-level"]
|
|
}
|
|
}
|