MajorAmari
MajorAmari
DDeno
Created by MajorAmari on 1/11/2025 in #help
Why are both denols and tsserver attaching to the same TypeScript project in Neovim?
I explained everything in this stackoverflow question: https://stackoverflow.com/staging-ground/79347839
1 replies
DDeno
Created by MajorAmari on 6/11/2023 in #help
how to specify giving error or warning for a lint rule?
I'm new to Deno couldn't find a way to make a lint rule give error instead of error
{
"lint": {
"include": [],
"exclude": [],
"rules": {
"tags": [
"recommended"
],
"include": [
"eqeqeq" // <-- Here for example it give warning in vscode
],
"exclude": [
"import-prefix-missing"
]
}
}
}
{
"lint": {
"include": [],
"exclude": [],
"rules": {
"tags": [
"recommended"
],
"include": [
"eqeqeq" // <-- Here for example it give warning in vscode
],
"exclude": [
"import-prefix-missing"
]
}
}
}
5 replies