eslint-plugin-no-relative-import-paths
eslint-plugin-no-relative-import-paths copied to clipboard
`"allowSameFolder": true` should still catch `./../`
Config:
"no-relative-import-paths/no-relative-import-paths": [
"error",
{ "allowSameFolder": true }
]
Catches the following: ../path/to/relative/parent/import
But not: ./../path/to/relative/parent/import