205 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
213
views
How to Exclude Specific Files (like .env) from GitHub Copilot (LSP-copilot) in Sublime?
I'm using GitHub Copilot with Sublime Text, integrated via lsp-copilot. I want to configure it so that Copilot does not provide suggestions for specific files, such as .env or some.txt, while still ...
0
votes
0
answers
65
views
Sublime - PyCodeStyle - Line Length Property
I'm editing SublimeLinter prefences trying to set line lenth in 100, but I can't get it to work
I tried with
{
"linters": {
"pycodestyle": {
"ignore": "E501"
}...
-1
votes
1
answer
85
views
SublimeText EsLint issues- cannot be located
nvm does not play nicely with eslint/sublime. I tirelessly tried to configure this with different paths/plugins.
Various errors come out- such as .bin/eslint: line 2: sed: command not found, eslint ...
3
votes
2
answers
1k
views
Sublime text TODO and others highlighting
I'm looking for a way to highlight TODOs and TODO-like in Sublime text.
I tried Linter and SublimeLinter-annotations but I cannot find a way or a clear documentation to better highlight the TODO line.
...
0
votes
1
answer
160
views
Make SublimeLinter flake8 linter only lint .py files
Is there a way to have my SublimeLinter flake8 linter only run on *.py files? I know there is an exclude key in the settings where I can specify files to ignore, but I'm looking for something more ...
1
vote
2
answers
386
views
Installed Node.js and Terminal says I have vulnerabilities
I am using Sublime Text. I have installed the Linter package and the ccslint and htmllint. To install the last two I have had to install Node.js on my Mac.
The CSS and HTML linters appear to work fine ...
1
vote
1
answer
195
views
Python code complexity as Sublime Text 3 Linter
I like the python package radon and use it fairly often to help find/reduce complex code.
I'm normally developing in Sublime Text, and running radon beside in console, but would really like to have ...
2
votes
1
answer
1k
views
Sublime Linter Path issue can't find flake 8 (probably due to using Pyenv
I installed Sublime Linter and the Sublime Linter Plugin Using Package Control and installed Flake8 using pip.
I am using pyenv to manage my Python installs.
When installing flake 8 I get this message:...
0
votes
1
answer
550
views
Ignore flake8 warning in SublimeLinter
I have installed SublimeLinter-flake8. I would like to exclude the W191 warning when I am using SublimeLinter with flake8. I have checked the SublimeLinter docs and tried adding "--ignore W191&...
3
votes
1
answer
169
views
Sublime linter node 14 error circular dependency
I recently installed node v14 and my linter on sublimeText is KO.
On every file focus it open a kind of console with this inside:
SublimeLinter: #2 eslint file.vue ERROR:
==============================...
2
votes
1
answer
3k
views
How can I fix this issue with SublimeLinter?
I hope it is ok to ask this even though it is not specifically a programming question. I installed the SublimeLinter and SublimeLinter-flake8 packages in Sublime Text 3.
I did pip install flake8 and ...
1
vote
1
answer
3k
views
How can i change indentation settings for flake8 in sublime text?
I am using Sublime Text 3 with the Packet Manager, and installed SublimeLinter and then SublimeLinter-flake8.
I want to use tabs for indentation, but I can't find out how. I can't actually find any ...
1
vote
1
answer
1k
views
Auto-run a command on saving in Sublime Text
Is it possible to run eslint automatically when I save either a .js or .jsx file in Sublime Text?
I'm using the ESLint sublime package right now but I have to manually run it each time using Cmd + ...
0
votes
1
answer
640
views
Sublime Linter with clang can't find header file in header
I'm using sublime text with the sublime linter plugin especially with clang.
When I open a folder, it use the root of the folder as a header location, so if I have
src
├── World
│ ├── Chunk.cpp
│ ...
0
votes
1
answer
284
views
SublimeText - CSSLint ignore alphabetical order
I'm using Sublime Text 3 and SublimeLinter CSSLint.
How can I disable the order-alphabetical warnings?
I've found this link:
https://github.com/SublimeLinter/SublimeLinter-csslint/issues/15
...