python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Can I write my own custom rule in eslint config?
Is it possible to write custom rule in eslint config?
My case is based on type 'any'. In eslint doc is rule "@typescript-eslint/no-explicit-any", but it's too strong for me. I want to block ...
ajronn
Votes: 0
Answers: 1
Why does assigning a variable of type any change the type of the variable it is assigned to?
Let's look at the following example:
let a: string = "hello world"
let b: number = 23
let c: any = 23
console.log(typeof a) // "string"
console.log(typeof b) // "number"...

Babofett
Votes: 0
Answers: 1
"Function expression, which lacks return-type annotation, implicitly has an 'any' return type" when adding void operation
I am having a strange issue on TypeScript. I recently learnt about void ... operator because I need to apply it so eslint wouldn't report no-floating-promises. However this particular snippet somehow ...
Luke Vo
Votes: 0
Answers: 2
the pandas function any() don’t return the result what i want
I have the following DataFrame
df = pd.DataFrame(
{
'class': ['0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0'],
'item': ['1','1','2','2','2','3','3','3...
Lyès SARDI
Votes: 0
Answers: 1