I see lots in lots of pieces of code this line:
// eslint-disable-next-line camelcase
This is due to properties in objects being in snakecase.
But there is an option provided by eslint for this case: { "properties": "never" }
With this option:
const wrong_name = 42; // This reports an error myFunction( { wikilambdafn_zfunction_id: 'Z801', // This is accepted by Eslint } );