6 questions from the last 30 days
2
votes
1
answer
91
views
How to correctly set PyCharm 'Sources Root' when having few 'src' folders for few packages
I have a project with multiple packages, each containing its own src folder:
project/
src/
package1/
pyproject.toml
src/
logic/
somestuff.py
mymodel1.py
...
0
votes
0
answers
81
views
Parameter Info popup is extremely small and can’t be resized on macOS
I have an issue regarding the popup window size.
When I press View Parameter Info (⌘P) in PhpStorm, the popup window that shows the function parameters is extremely small. Its height is about 20–30px, ...
Tooling
1
vote
2
replies
41
views
PyCharm doesn't highlight problem files/directories in the files tree
I'm just amazed, but is there really no function for highlighting directories and files with problematic code?
The thing is, in one of my projects, I used JS in PyCharm, and there is a linter called ...
1
vote
0
answers
38
views
How do I specify to WebStorm the canonical definition of the Vuex store?
Problem
I have a Vue project that uses Vuex for state management. Parts of the Vuex store are often mocked in unit tests (Vitest).
When Vuex stores are defined in both the main production code and in ...
0
votes
0
answers
34
views
Connect to SQLCipher encrypted SQLite database with Rider's built-in plugin
I'm trying to connect to my database through Rider but it doesn't work since I encrypted my database with SQLCipher. Tutorials say I should add these fields in the "Advanced" tab but that ...
0
votes
0
answers
17
views
Setting non-shared environmental variables in shared WebStorm Run Configs
I have a few shared Run Config files (they all run something like pnpm run xy). One of them needs to have a specific token in order to function correctly. This Run Config fails without the token, but ...